我想把圖像添加到郵件正文中,在郵件中不使用附件。
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或純文本格式。