简体   繁体   中英

How to send a mail containing HTML Table Tag in Android

I know that similar questions have already been asked. But most of them were asked almost 2 years back and even the latest answers are 2 years old. So please let me know if there is a functionality of sending an HTML Mail containing a table Tag now in android.

See this can help you :

 String body="Your HTML BODY";
            final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND);
            emailIntent.setType("text/html");           
            emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, subject);    
            emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, Html.fromHtml(body));
            startActivity(Intent.createChooser(emailIntent, "Email:"));

Or as per your question see this Link to use table format

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM