Android Inline Images in Email

Can anyone suggest how to add images to the email body? I tried, but did not answer.

Here is my code:

Intent sendIntent = new Intent(Intent.ACTION_SEND); sendIntent.setType("image/jpeg"); sendIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { " gmail@gmail.com " }); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "Photo"); sendIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://" + _path)); sendIntent.setType("image/png;text/html"); String htmlecode = "<html><b>Bold Text works perfectly</b>" + "<img width='48' height='48' alt='' " + "src='http://upload.wikimedia.org/wikipedia/commons/7/7a/Basketball.png' />" + "</html>"; sendIntent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(htmlecode, imgGetter, null)); startActivity(Intent.createChooser(sendIntent, "Email:")); 

Wrong in this code?

+4
source share
1 answer

There is a similar post here. They suggest using:

 emailIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse("file:///mnt/sdcard/Myimage.jpeg")); 
0
source

All Articles