Class EmailMultiAlternatives
A version of EmailMessage that makes it easy to send multipart/alternative messages. For example, including text and HTML versions of the text is made easier.
Declaration
source linkDocumentation
Methods
▶ def __init__(self, subject='', body='', from_email=None, to=None, bcc=None, ...) override Initialize a single email message (which can be sent to multiple recipients).
def __init__(
self,
subject='',
body='',
from_email=None,
to=None,
bcc=None,
connection=None,
attachments=None,
headers=None,
alternatives=None,
cc=None,
reply_to=None,
)
This method overrides django.core.mail.message.EmailMessage.__init__.
▷ def attach_alternative(self, content, mimetype) Attach an alternative content representation.