简体   繁体   中英

Send E-mail in HTML format

I want to send an email in HTML format like as below image. How can I do this? Please help me. Thanks in advance...!

一

String body = new String("<html><body><table><tr><td><br/>" +header+"</td></tr><br/><br/>"+"Get <b> Best Score </b> in your Android Phone.<br/>"+"<a href=\"" + link_val + "\">" + text_value+ "</a>");

emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, html.fromHtml(body));

Android support only some Tag..

For more information check below link..

Link1

Link2

Use any html editor program to design the html page. emailText contains the html data. I think this code is fairly obvious.

 final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND_MULTIPLE);
        emailIntent.setType("text/html");
        emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, 
            emailTo);
        emailIntent.putExtra(android.content.Intent.EXTRA_CC, 
                emailCc);
        emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, 
                subject);
        emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, 
                emailText);

   this.startActivity(Intent.createChooser(emailIntent, "Choose your email program"));

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