class documentation

A wrapper that manages the SMTP network connection.

Method __init__ Undocumented
Method close Close the connection to the email server.
Method open Ensure an open connection to the email server. Return whether or not a new connection was required (True or False) or None if an exception passed silently.
Method send_messages Send one or more EmailMessage objects and return the number of email messages sent.
Instance Variable connection Undocumented
Instance Variable host Undocumented
Instance Variable password Undocumented
Instance Variable port Undocumented
Instance Variable ssl_certfile Undocumented
Instance Variable ssl_keyfile Undocumented
Instance Variable timeout Undocumented
Instance Variable use_ssl Undocumented
Instance Variable use_tls Undocumented
Instance Variable username Undocumented
Property connection_class Undocumented
Method _send A helper method that does the actual sending.
Instance Variable _lock Undocumented

Inherited from BaseEmailBackend:

Method __enter__ Undocumented
Method __exit__ Undocumented
Instance Variable fail_silently Undocumented
def __init__(self, host=None, port=None, username=None, password=None, use_tls=None, fail_silently=False, use_ssl=None, timeout=None, ssl_keyfile=None, ssl_certfile=None, **kwargs): (source)
def close(self): (source)

Close the connection to the email server.

def open(self): (source)

Ensure an open connection to the email server. Return whether or not a new connection was required (True or False) or None if an exception passed silently.

def send_messages(self, email_messages): (source)

Send one or more EmailMessage objects and return the number of email messages sent.

connection = (source)

Undocumented

Undocumented

password = (source)

Undocumented

Undocumented

ssl_certfile = (source)

Undocumented

ssl_keyfile = (source)

Undocumented

Undocumented

Undocumented

Undocumented

username = (source)

Undocumented

@property
connection_class = (source)

Undocumented

def _send(self, email_message): (source)

A helper method that does the actual sending.

Undocumented