how to send E-mail html content with images in mail body using android
My code :
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE);
emailIntent.setType("text/html");
emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL,"to");
emailIntent.putExtra(android.content.Intent.EXTRA_CC,"cc");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT,"subject");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,Html.fromHtml(body));
this.startActivity(Intent.createChooser(emailIntent, "Choose your email program"));
But mail body not display some html contains and images.
Please Help me.
Advance Thanks.