Search code examples
androidhtmlemailinline-images

Sending inline HTML images in email


I want to send HTML content via email. I open gmail via intent and shows compose page using below code.

Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.setPackage("com.google.android.gm");                    
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "subject here");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml("html <b>content</b>"));
startActivity(Intent.createChooser(emailIntent, "Email to Friend"));

But the problem with this is that, I cant send inline images. How can do that?


Solution

  • All you need: