3

Does Android Default Email Client supports the html content? Any ideas ? i am using like this.

int_email.setType("*/*");
int_email.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(message)) ;
Chirag
  • 56,621
  • 29
  • 151
  • 198
saikiran
  • 101
  • 1
  • 2
  • use JavaMailAPI to send email in html format http://stackoverflow.com/questions/2020088/sending-email-in-android-using-javamail-api-without-using-the-default-built-in-a/2033124#2033124 – Ajay Singh Feb 27 '13 at 12:35

1 Answers1

0

You can set type to plain/text and passe your message directly

int_email.setType("plain/text");
int_email.putExtra(Intent.EXTRA_TEXT, message) ;
Festus Tamakloe
  • 11,231
  • 9
  • 53
  • 65