is it possible to send html with the mail intent. I’ve seen some questions about this, but they are al answered with something like this:
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, titleString);
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(htmlString));
startActivity(Intent.createChooser(emailIntent, "Email:"));
I’m trying to send some data in a table but the Html.fromHtml will remove my table layout..
Is there any other option to send a html content type email…?
Solved it by the following work-around:
Create a html file and send it as a attachment..