我想使用Django模板发送HTML电子邮件,如下所示:

<html>
<body>
hello <strong>{{username}}</strong>
your account activated.
<img src="mysite.com/logo.gif" />
</body>

我找不到有关send_mail的任何信息,并且django-mailer仅发送HTML模板,而没有动态数据。

如何使用Django的模板引擎生成电子邮件?

最佳答案

the docs,要发送HTML电子邮件,您要使用其他内容类型,例如:

from django.core.mail import EmailMultiAlternatives

subject, from_email, to = 'hello', 'from@example.com', 'to@example.com'
text_content = 'This is an important message.'
html_content = '<p>This is an <strong>important</strong> message.</p>'
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()

您可能需要两个用于电子邮件的模板-一个看起来像这样的纯文本模板,存储在email.txt下的模板目录中:
Hello {{ username }} - your account is activated.

还有一个HTMLy,存储在email.html下:
Hello <strong>{{ username }}</strong> - your account is activated.

然后,您可以使用 get_template 使用这两个模板发送电子邮件,如下所示:
from django.core.mail import EmailMultiAlternatives
from django.template.loader import get_template
from django.template import Context

plaintext = get_template('email.txt')
htmly     = get_template('email.html')

d = Context({ 'username': username })

subject, from_email, to = 'hello', 'from@example.com', 'to@example.com'
text_content = plaintext.render(d)
html_content = htmly.render(d)
msg = EmailMultiAlternatives(subject, text_content, from_email, [to])
msg.attach_alternative(html_content, "text/html")
msg.send()

10-07 19:19
查看更多