我想通过我的应用程序发送电子邮件。我需要通过 G-Mail 发送基于 HTML 的电子邮件。我发现以下解决方案各有利弊。
1)使用意图(Intent.ACTION_SEND)。这是一种非常简单的方法,我可以看到我的 HTML 格式的正文,但问题是当我点击“发送电子邮件”按钮时,会弹出很多应用程序,如 Facebook 和 Google+,这些都是无用的,我不应该在该列表中显示它. 这是它的代码:
String html = "<!DOCTYPE html><html><body><a href=\"http://www.w3schools.com\" target=\"_blank\">Visit W3Schools.com!</a>" + "<p>If you set the target attribute to \"_blank\", the link will open in a new browser window/tab.</p></body></html>";
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
intent.putExtra(Intent.EXTRA_EMAIL, new String[] {"MY EMAIL ADDRESS"});
intent.putExtra(Intent.EXTRA_SUBJECT, "subject here");
intent.putExtra(Intent.EXTRA_TEXT, Html.fromHtml(html));
startActivity(Intent.createChooser(intent, "Send email..."));
2)使用意图(Intent.ACTION_SENDTO)。这种方式过滤无用的应用程序并只显示邮件客户端。但它不会在 gmail 客户端中以 HTML 格式显示我的电子邮件。当我发送电子邮件时,一些客户端以 HTML 格式显示正文,而其他客户端不识别 HTML,并且我的链接表现得像纯文本。这段代码就像:
String html = "<!DOCTYPE html><html><body><a href=\"http://www.w3schools.com\" target=\"_blank\">Visit W3Schools.com!</a>" + "<p>If you set the target attribute to \"_blank\", the link will open in a new browser window/tab.</p></body></html>";
Intent send = new Intent(Intent.ACTION_SENDTO);
String uriText = "mailto:MY EMAIL ADDRESS" + "?subject=subject here" + "&body=" + html;
uriText = uriText.replace(" ", "%20");
Uri uri = Uri.parse(uriText);
send.setData(uri);
startActivity(Intent.createChooser(send, "Send mail..."));
3) 使用JavaMail API发送邮件,这增加了应用程序的复杂性,到目前为止我还没有对其进行测试。
你的建议是什么?我需要一种方法来获得第一种和第二种方法的优势。当用户单击按钮时,我需要它显示 Gmail 客户端,我可以在客户端的正文部分显示他/她的 html 内容。
任何建议将不胜感激。谢谢
=======================
更新
关于代码 2 的某些内容是错误的。代码是这样的:
String html = "<!DOCTYPE html><html><body><a href=\"http://www.w3schools.com\" target=\"_blank\">Visit W3Schools.com!</a>" + "<p>If you set the target attribute to \"_blank\", the link will open in a new browser window/tab.</p></body></html>";
Intent send = new Intent(Intent.ACTION_SENDTO);
String uriText = "mailto:MY EMAIL ADDRESS" + "?subject=subject here" + "&body=" + Html.fromHtml(html);
uriText = uriText.replace(" ", "%20");
Uri uri = Uri.parse(uriText);
send.setData(uri);
startActivity(Intent.createChooser(send, "Send mail..."));