如何从我的应用程序发送带有gmail组合的电子邮件?

时间:2013-06-19 11:58:27

标签: django gmail

当我的网络应用程序的当前用户选择将通过Gmail向他们发送电子邮件的其他用户时,我想将他重定向到gmail撰写(Link),然后输入他的消息。

在我的django视图中,在点击“Mail To”之前,我已经检索了一个远程用户列表。 是否可以在gmail中影响那些用户到目的地?

1 个答案:

答案 0 :(得分:0)

如果要包含多个收件人,请在模板中执行以下操作:

<a href="mailto:{% for user in users %}{% if not forloop.last %}{{ user.email }},{% else %}{{ user.email }}{% endif %}{% endfor %}">Send email</a>

这是jsfiddle中的example。您还可以添加主题和正文:

<a href="mailto:abc@gmail.com,cde@gmail.com?subject=test subject&body=hi there" target="_blank">Send email with subject and body</a>

查看更多提示和技巧here