如何发送HTML电子邮件
我发现了一种使用intent发送纯文本电子邮件的方法:
final Intent emailIntent = new Intent(android.content.Intent.ACTION_SEND); emailIntent.setType("text/plain"); emailIntent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[]{"example@mail.com"}); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject"); emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "Test");
但是我需要发送HTML格式的文本。
尝试setType(“文本/ HTML”)不起作用。
你可以在你的额外中传递Spanned
文本。 为了确保意图仅parsing处理电子邮件的活动(例如,Gmail和电子邮件应用程序),可以使用ACTION_SENDTO
和Uri开头的mailtoscheme。 如果您事先不知道收件人,这也将起作用:
final Intent shareIntent = new Intent(Intent.ACTION_SENDTO, Uri.parse("mailto:")); shareIntent.putExtra(Intent.EXTRA_SUBJECT, "The Subject"); shareIntent.putExtra( Intent.EXTRA_TEXT, Html.fromHtml(new StringBuilder() .append("<p><b>Some Content</b></p>") .append("<small><p>More content</p></small>") .toString()) );
这对我来说对HTML非常有帮助,但ACTION_SENDTO对我来说并不完全正常 – 我得到了一个“不支持的操作”的消息。 我在这里find了一个变体:
http://www.coderanch.com/t/520651/Android/Mobile/no-application-perform-action-when
这里是我的代码,它们结合在一起:
String mailId="yourmail@gmail.com"; Intent emailIntent = new Intent(Intent.ACTION_SENDTO, Uri.fromParts("mailto",mailId, null)); emailIntent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Subject text here"); // you can use simple text like this // emailIntent.putExtra(android.content.Intent.EXTRA_TEXT,"Body text here"); // or get fancy with HTML like this emailIntent.putExtra( Intent.EXTRA_TEXT, Html.fromHtml(new StringBuilder() .append("<p><b>Some Content</b></p>") .append("<a>http://www.google.com</a>") .append("<small><p>More content</p></small>") .toString()) ); startActivity(Intent.createChooser(emailIntent, "Send email..."));
我还没有(还)开始Android开发,但意图的文档说,如果您使用EXTRA_TEXT,MIMEtypes应该是文本/纯文本。 似乎如果你想看到HTML,你将不得不使用EXTRA_STREAM而不是…
您必须将“EXTRA_TEXT”更改为“EXTRA_HTML_TEXT”
https://developer.android.com/reference/android/content/Intent.html#EXTRA_HTML_TEXT
那么只是想在文本区域添加一些html呢?
emailIntent.putExtra(android.content.Intent.EXTRA_TEXT, "<strong>Test</strong>");