发送邮件的另一方法

Intent intent = new Intent(Intent.ACTION_SEND); 
intent
.setType("text/plain"); 
intent
.putExtra(Intent.EXTRA_SUBJECT, subject); 
intent
.putExtra(Intent.EXTRA_TEXT, message); 
Intent mailer = Intent.createChooser(intent, null); 
startActivity
(mailer); 
用上面的方法发送邮件可行,但是如果你里面的程序较多 好多程序都可以供你选择

 

想缩小一下范围可以用

Intent intent = new Intent(Intent.ACTION_VIEW); 
Uri data = Uri.parse("mailto:?subject=" + subject + "&body=" + body); 
intent
.setData(data); 
startActivity
(intent); 

你可能感兴趣的:(发送邮件)