我想把图像添加到邮件正文中,在邮件中不使用附件。
String imagepath ;
Imagepath = Environment.getExternalStorageDirectory()+ File.separator + "ImagesCmas/"+image_name;
final Intent sendIntent = new Intent(Intent.ACTION_SEND);
sendIntent.setType("image/jpg");
sendIntent.putExtra(Intent.EXTRA_SUBJECT,"Happy Christmas");
sendIntent.putExtra(Intent.EXTRA_TEXT,"Find Greeting Attachment");
sendIntent.putExtra(Intent.EXTRA_TEXT, Uri.parse(imagepath));
startActivity(Intent.createChooser(sendIntent, "Send Mail"));
不使用附件,如何把SD卡中的图像发送到邮件正文中?
不能不使用附件。
得用附件,或者给html设置mime类型,在外部图像嵌入一个标签。
<img src="http://imgur.com/myimage.png"></img>
电子邮件正文只能包含html或纯文本格式。