About Sending HTML-only Emails

You can send HTML-only emails using this helper function:

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
from django.core.mail import EmailMessage

def send_html_email(
    subject, html_message, from_email, recipient_list,
    fail_silently=False,
):
    msg = EmailMessage(
        subject=subject, body=html_message, 
        from_email=from_email, to=recipient_list,
    )
    msg.content_subtype = "html"
    return msg.send(fail_silently=fail_silently)

Tips and Tricks Programming Django 4.2 Django 3.2 Django 2.2 Email