Intent mailIntent = new Intent(Intent.ACTION_SEND);
String[] tos = { "xxx@xx.cn" };
//真机上用这个 模拟器上用"text/plain"
mailIntent.setType("message/rfc822");
mailIntent.putExtra(Intent.EXTRA_EMAIL, tos);
mailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,
"egame MailService");
startActivity(mailIntent);