def send_multipart_email(subject, html_template, from_email, to_email):
html = render_to_string(html_template)
text_content = strip_tags(html)
msg = EmailMultiAlternatives(subject, text_content, from_email, to_email)
msg.attach_alternative(html, "text/html")
msg.send()
评论列表
文章目录