Django autoescape在render_to_string(模板)中不起作用?

时间:2017-12-09 08:29:26

标签: python html django render-to-string

我正在为用户成功更新密码时起草电子邮件模板。

我在模板中使用了{{autoescape off}},它使用render_to_string()进行渲染。

但是,电子邮件内容直接显示HTML尖括号:

  

您好< span style ='颜色:蓝色'>用户! < /跨度>

     

您的密码已成功更新!

<小时/> 我正在使用Django2.0,我的代码如下所示:

views.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,],
            )

template.html

{{ autoescape off}}
Hi <span style='color:blue'>user! </span>
Your password is updated successfully!
{{ endautoescape }}

我的代码有什么问题吗?

否则,在使用render_to_string()?

时,autoescape是否一直处于打开状态

1 个答案:

答案 0 :(得分:2)

这与autoescape无关,autoescape用于渲染变量(它也是模板标记,因此您将其与{% autoescape off %}一起使用,而不是{{ autoescape off }})。它在您当前的模板中根本不执行任何操作。

您的问题是您正在尝试将HTML放入电子邮件的纯文本正文中。

send_mail需要纯文本邮件正文。如果你想拥有一个HTML主体,那么你需要提供一个html_message参数:

send_mail(
    email_title,
    '',  # Empty plain text body - not recommended and you should supply a plain text alternative
    'myemail@email.com',
    [recipient,],
    html_message=email_content,  # This will render as HTML
)