I am developing an application to send an email with HTML data as the email subject. The HTML contains a table tag in it. But when I get the mail it doesn't look like a table. what is the problem here? the code I used is
Intent emailIntent = new Intent(Intent.ACTION_SEND);
emailIntent.setType("text/plain");
emailIntent.putExtra(Intent.EXTRA_EMAIL, new String[] { "" });
emailIntent.putExtra(Intent.EXTRA_SUBJECT, "Medicine Details");
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,
Html.fromHtml(htmldata));
startActivity(Intent.createChooser(emailIntent, "Email to Friend"));