Possible Duplicate:
android - How to create table in the email body
I want to send an html email from my android application.I am using tag in this html. I know that Html.fromHtml() method does not support tags.So the mail shows as plain text.I want to send this data as a table and never attached.How can i achieve this. I am using
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("text/html");
emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { "" });
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,Html.fromHtml(emailContent));
startActivity(Intent.createChooser(emailIntent,"Send mail..."));
Thanks in advance.