I want to send HTML content by email. I open gmail with intent and it shows the creation page using the code below.
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 is that I can not send embedded images. How can I do that?
source share