如何使用django核心电子邮件调用模板而不是纯HTML来发送电子邮件?
我的观点:
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,如何在此处调用模板?此模板将是电子邮件的内容。