从docs,要发送HTML电子邮件,你想使用其他内容类型,如下所示:
from django.core.mail import EmailMultiAlternativessubject, 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 EmailMultiAlternativesfrom django.template.loader import get_templatefrom django.template import Contextplaintext = 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()


