Skip to content Skip to sidebar Skip to footer

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...!

Solution 1:

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/>"+"<ahref=\"" + 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

Solution 2:

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

finalIntentemailIntent=newIntent(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"));

Post a Comment for "Send E-mail In Html Format"