MYMESSAGE = "<div>Hello</div><p></p>Hello" send_mail("testing",MYMESSAGE,"noreply@mydomain.com",['assdf@gmail.com'],fail_silently=False)
Однако это сообщение не получает тип mime HTML при отправке. В моем мировоззрении я вижу код ...
С документы :
msg = EmailMessage(subject, html_content, from_email, [to]) msg.content_subtype = "html" # Main content is now text/html msg.send()
Вы можете изменить только тот подтип миметипа, который вам кажется. Так будет всегда
"text/%s" % msg.content_subtype