如何在Android中发送包含纯文本和HTML的多部分电子邮件?

时间:2011-11-15 09:15:57

标签: android email android-intent html-email multipart

我正在尝试找出Android中通过Intent发送多部分电子邮件的最简洁方法。该电子邮件应包含纯文本部分和HTML部分。

谢谢。

1 个答案:

答案 0 :(得分:0)

String mailBody="Hello. I think you’d really enjoy this:"+
                "<a href='www.google.com/'> Search eEngine  </a>"+
                "from  Books"+"<br/><br/>"; 




                Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); 
                emailIntent.setType("text/html"); 
                emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Search eEngine "); 
                emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,Html.fromHtml(mailBody));                         
                startActivity(Intent.createChooser(emailIntent, "Send mail..."));