android:带模板的电子邮件

时间:2011-10-07 03:02:01

标签: android email

我正在从我的应用程序发送电子邮件。 我想知道是否有办法为例如:

定义模板
subject: Regarding {{title}} 
Body: You may be interested in the product {{title}} \b {{desc}} 

我想在某个资源文件中定义此模板。

感谢您的帮助和时间。

2 个答案:

答案 0 :(得分:1)

只需根据RFC-2368构建mailto URL,其中包括主题和其他字段。因此,最后您将拥有可用于启动电子邮件发件人活动的URI:

Uri uri=Uri.parse("mailto:example@example.com?subject=Here goes test message");
intent = new Intent(Intent.ACTION_SENDTO, uri);
activity.startActivity(intent);

您可以根据需要以编程方式构建mailto URL

答案 1 :(得分:0)

您可以使用strings.xml w /字符串格式字符%d %s %f...,并使用String.format()

如果其他人有更好的想法,那就太好了。)