Email Embedded HTML Images

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?

+4
source share

Source: https://habr.com/ru/post/1335397/


All Articles