我想通过我的应用程序发送电子邮件。 我只需要通过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..."));