【发布时间】:2021-12-28 23:11:51
【问题描述】:
我正在尝试使用 html 模板从 django 发送电子邮件。它确实发送电子邮件,但 html 以纯文本形式发送。如何使电子邮件在收件人面前显示为 html?
我正在使用 Django 4.0
views.py
# import file with html content
html_version = 'activate_email.html'
html_message = render_to_string(html_version, {'context': context })
email = EmailMessage(
'Website email verification',
html_message,
'info@example.co',
[user.email],
)
email.send()
activate_email.html
{% autoescape off %}
<h1>Test</h1>
{% endautoescape %}
【问题讨论】:
标签: python django django-rest-framework