如何调用模板而不是纯 HTML 来使用 django 核心电子邮件发送电子邮件?
我的看法:
to = articles.user.email
html_content = '<p>This is your email content...</p>'
msg = EmailMultiAlternatives('You have an email',html_content,'from@server.com',[to])
msg.attach_alternative(html_content,'text/html')
msg.send()
在html_content
您可以看到的变量中是纯 HTML,我如何在这里调用模板?该模板将是电子邮件的内容。