当用户成功更新密码时,我正在为用户起草一个电子邮件模板。
我在模板中使用了 {{ autoescape off }},它是使用 render_to_string() 渲染的。
但是,电子邮件内容直接显示 HTML 尖括号,如下所示:
嗨<span style='color:blue'>用户!</span>
您的密码已成功更新!
我正在使用 Django2.0,我的代码如下所示:
视图.py
from django.core.mail import send_mail
from django.template.loader import render_to_string
def sendmail(request, title)
email_title = title
email_content = render_to_string('template.html',{'username':request.user.username})
recipient = request.user.email
send_mail(
email_title,
email_content,
'myemail@email.com',
[recipient,],
)
模板.html
{{ autoescape off}}
Hi <span style='color:blue'>user! </span>
Your password is updated successfully!
{{ endautoescape }}
我的代码有什么问题吗?
否则,在使用 render_to_string() 时是否始终开启自动转义?