Class EmailMessage
A container for email information.
Declaration
class EmailMessage
source linkDocumentation
Methods
▶ def __init__(self, subject='', body='', from_email=None, to=None, bcc=None, ...) 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,
cc=None,
reply_to=None,
)
Overrides
This method is overriden in:
▶ def attach(self, filename=None, content=None, mimetype=None) Attach a file with the given filename and content. The filename can be omitted and the mimetype is guessed, if not provided.
If the first parameter is a MIMEBase subclass, insert it directly
into the resulting message attachments.
For a text/* mimetype (guessed or specified), when a bytes object is
specified as content, decode it as UTF-8. If that fails, set the
mimetype to DEFAULT_ATTACHMENT_MIME_TYPE and don't decode the content.
▶ def attach_file(self, path, mimetype=None) Attach a file from the filesystem.
Set the mimetype to DEFAULT_ATTACHMENT_MIME_TYPE if it isn't specified
and cannot be guessed.
For a text/* mimetype (guessed or specified), decode the file's content
as UTF-8. If that fails, set the mimetype to
DEFAULT_ATTACHMENT_MIME_TYPE and don't decode the content.
▷ def recipients(self) Return a list of all recipients of the email (includes direct addressees as well as Cc and Bcc entries).
▷ def send(self, fail_silently=False) Send the email message.
Subclasses
Reexports