💾 Archived View for tris.fyi › pydoc › smtplib captured on 2022-07-16 at 14:57:12. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-01-08)

➡️ Next capture (2023-01-29)

-=-=-=-=-=-=-

Back to module index

Go to module by name

smtplib

SMTP/ESMTP client class.

This should follow RFC 821 (SMTP), RFC 1869 (ESMTP), RFC 2554 (SMTP
Authentication) and RFC 2487 (Secure SMTP over TLS).

Notes:

Please remember, when doing ESMTP, that the names of the SMTP service
extensions are NOT the same thing as the option keywords for the RCPT
and MAIL commands!

Example:

  >>> import smtplib
  >>> s=smtplib.SMTP("localhost")
  >>> print(s.help())
  This is Sendmail version 8.8.4
  Topics:
      HELO    EHLO    MAIL    RCPT    DATA
      RSET    NOOP    QUIT    HELP    VRFY
      EXPN    VERB    ETRN    DSN
  For more info use "HELP <topic>".
  To report bugs in the implementation send email to
      sendmail-bugs@sendmail.org.
  For local information send email to Postmaster at your site.
  End of HELP info
  >>> s.putcmd("vrfy","someone@here")
  >>> s.getreply()
  (250, "Somebody OverHere <somebody@here.my.org>")
  >>> s.quit()

Classes

LMTP

LMTP - Local Mail Transfer Protocol

    The LMTP protocol, which is very similar to ESMTP, is heavily based
    on the standard SMTP client. It's common to use Unix sockets for
    LMTP, so our connect() method must support that as well as a regular
    host:port server.  local_hostname and source_address have the same
    meaning as they do in the SMTP class.  To specify a Unix socket,
    you must use an absolute path as the host, starting with a '/'.

    Authentication is supported, using the regular SMTP mechanism. When
    using a Unix socket, LMTP generally don't support or require any
    authentication, but your mileage might vary.
auth(self, mechanism, authobject, *, initial_response_ok=True)

  Authentication command - requires response processing.

          'mechanism' specifies which authentication mechanism is to
          be used - the valid values are those listed in the 'auth'
          element of 'esmtp_features'.

          'authobject' must be a callable object taking a single argument:

                  data = authobject(challenge)

          It will be called to process the server's challenge response; the
          challenge argument it is passed will be a bytes.  It should return
          an ASCII string that will be base64 encoded and sent to the server.

          Keyword arguments:
              - initial_response_ok: Allow sending the RFC 4954 initial-response
                to the AUTH command, if the authentication methods supports it.
        
auth_cram_md5(self, challenge=None)

   Authobject to use with CRAM-MD5 authentication. Requires self.user
          and self.password to be set.
auth_login(self, challenge=None)

   Authobject to use with LOGIN authentication. Requires self.user and
          self.password to be set.
auth_plain(self, challenge=None)

   Authobject to use with PLAIN authentication. Requires self.user and
          self.password to be set.
close(self)

  Close the connection to the SMTP server.
connect(self, host='localhost', port=0, source_address=None)

  Connect to the LMTP daemon, on either a Unix or a TCP socket.
data(self, msg)

  SMTP 'DATA' command -- sends message data to server.

          Automatically quotes lines beginning with a period per rfc821.
          Raises SMTPDataError if there is an unexpected reply to the
          DATA command; the return value from this method is the final
          response code received when the all data is sent.  If msg
          is a string, lone '\r' and '\n' characters are converted to
          '\r\n' characters.  If msg is bytes, it is transmitted as is.
        
docmd(self, cmd, args='')

  Send a command, and return its response code.
ehlo(self, name='')

   SMTP 'ehlo' command.
          Hostname to send for this command defaults to the FQDN of the local
          host.
        
ehlo_or_helo_if_needed(self)

  Call self.ehlo() and/or self.helo() if needed.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
        
expn(self, address)

  SMTP 'expn' command -- expands a mailing list.
getreply(self)

  Get a reply from the server.

          Returns a tuple consisting of:

            - server response code (e.g. '250', or such, if all goes well)
              Note: returns -1 if it can't read response code.

            - server response string corresponding to response code (multiline
              responses are converted to a single, multiline string).

          Raises SMTPServerDisconnected if end-of-file is reached.
        
has_extn(self, opt)

  Does the server support a given SMTP service extension?
helo(self, name='')

  SMTP 'helo' command.
          Hostname to send for this command defaults to the FQDN of the local
          host.
        
help(self, args='')

  SMTP 'help' command.
          Returns help text from server.
login(self, user, password, *, initial_response_ok=True)

  Log in on an SMTP server that requires authentication.

          The arguments are:
              - user:         The user name to authenticate with.
              - password:     The password for the authentication.

          Keyword arguments:
              - initial_response_ok: Allow sending the RFC 4954 initial-response
                to the AUTH command, if the authentication methods supports it.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          This method will return normally if the authentication was successful.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
           SMTPAuthenticationError  The server didn't accept the username/
                                    password combination.
           SMTPNotSupportedError    The AUTH command is not supported by the
                                    server.
           SMTPException            No suitable authentication method was
                                    found.
        
mail(self, sender, options=())

  SMTP 'mail' command -- begins mail xfer session.

          This method may raise the following exceptions:

           SMTPNotSupportedError  The options parameter includes 'SMTPUTF8'
                                  but the SMTPUTF8 extension is not supported by
                                  the server.
        
noop(self)

  SMTP 'noop' command -- doesn't do anything :>
putcmd(self, cmd, args='')

  Send a command to the server.
quit(self)

  Terminate the SMTP session.
rcpt(self, recip, options=())

  SMTP 'rcpt' command -- indicates 1 recipient for this mail.
rset(self)

  SMTP 'rset' command -- resets session.
send(self, s)

  Send `s' to the server.
send_message(self, msg, from_addr=None, to_addrs=None, mail_options=(), rcpt_options=())

  Converts message to a bytestring and passes it to sendmail.

          The arguments are as for sendmail, except that msg is an
          email.message.Message object.  If from_addr is None or to_addrs is
          None, these arguments are taken from the headers of the Message as
          described in RFC 2822 (a ValueError is raised if there is more than
          one set of 'Resent-' headers).  Regardless of the values of from_addr and
          to_addr, any Bcc field (or Resent-Bcc field, when the Message is a
          resent) of the Message object won't be transmitted.  The Message
          object is then serialized using email.generator.BytesGenerator and
          sendmail is called to transmit the message.  If the sender or any of
          the recipient addresses contain non-ASCII and the server advertises the
          SMTPUTF8 capability, the policy is cloned with utf8 set to True for the
          serialization, and SMTPUTF8 and BODY=8BITMIME are asserted on the send.
          If the server does not support SMTPUTF8, an SMTPNotSupported error is
          raised.  Otherwise the generator is called without modifying the
          policy.

        
sendmail(self, from_addr, to_addrs, msg, mail_options=(), rcpt_options=())

  This command performs an entire mail transaction.

          The arguments are:
              - from_addr    : The address sending this mail.
              - to_addrs     : A list of addresses to send this mail to.  A bare
                               string will be treated as a list with 1 address.
              - msg          : The message to send.
              - mail_options : List of ESMTP options (such as 8bitmime) for the
                               mail command.
              - rcpt_options : List of ESMTP options (such as DSN commands) for
                               all the rcpt commands.

          msg may be a string containing characters in the ASCII range, or a byte
          string.  A string is encoded to bytes using the ascii codec, and lone
          \r and \n characters are converted to \r\n characters.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.  If the server does ESMTP, message size
          and each of the specified options will be passed to it.  If EHLO
          fails, HELO will be tried and ESMTP options suppressed.

          This method will return normally if the mail is accepted for at least
          one recipient.  It returns a dictionary, with one entry for each
          recipient that was refused.  Each entry contains a tuple of the SMTP
          error code and the accompanying error message sent by the server.

          This method may raise the following exceptions:

           SMTPHeloError          The server didn't reply properly to
                                  the helo greeting.
           SMTPRecipientsRefused  The server rejected ALL recipients
                                  (no mail was sent).
           SMTPSenderRefused      The server didn't accept the from_addr.
           SMTPDataError          The server replied with an unexpected
                                  error code (other than a refusal of
                                  a recipient).
           SMTPNotSupportedError  The mail_options parameter includes 'SMTPUTF8'
                                  but the SMTPUTF8 extension is not supported by
                                  the server.

          Note: the connection will be open even after an exception is raised.

          Example:

           >>> import smtplib
           >>> s=smtplib.SMTP("localhost")
           >>> tolist=["one@one.org","two@two.org","three@three.org","four@four.org"]
           >>> msg = '''\
           ... From: Me@my.org
           ... Subject: testin'...
           ...
           ... This is a test '''
           >>> s.sendmail("me@my.org",tolist,msg)
           { "three@three.org" : ( 550 ,"User unknown" ) }
           >>> s.quit()

          In the above example, the message was accepted for delivery to three
          of the four addresses, and one was rejected, with the error code
          550.  If all addresses are accepted, then the method will return an
          empty dictionary.

        
set_debuglevel(self, debuglevel)

  Set the debug output level.

          A non-false value results in debug messages for connection and for all
          messages sent to and received from the server.

        
starttls(self, keyfile=None, certfile=None, context=None)

  Puts the connection to the SMTP server into TLS mode.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          If the server supports TLS, this will encrypt the rest of the SMTP
          session. If you provide the keyfile and certfile parameters,
          the identity of the SMTP server and client can be checked. This,
          however, depends on whether the socket module really checks the
          certificates.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
        
verify(self, address)

  SMTP 'verify' command -- checks for address validity.
verify(self, address)

  SMTP 'verify' command -- checks for address validity.
debuglevel = 0
default_port = 25
does_esmtp = 0
ehlo_msg = 'lhlo'
ehlo_resp = None
file = None
helo_resp = None
sock = None

SMTP

This class manages a connection to an SMTP or ESMTP server.
    SMTP Objects:
        SMTP objects have the following attributes:
            helo_resp
                This is the message given by the server in response to the
                most recent HELO command.

            ehlo_resp
                This is the message given by the server in response to the
                most recent EHLO command. This is usually multiline.

            does_esmtp
                This is a True value _after you do an EHLO command_, if the
                server supports ESMTP.

            esmtp_features
                This is a dictionary, which, if the server supports ESMTP,
                will _after you do an EHLO command_, contain the names of the
                SMTP service extensions this server supports, and their
                parameters (if any).

                Note, all extension names are mapped to lower case in the
                dictionary.

        See each method's docstrings for details.  In general, there is a
        method of the same name to perform each SMTP command.  There is also a
        method called 'sendmail' that will do an entire mail transaction.
        
auth(self, mechanism, authobject, *, initial_response_ok=True)

  Authentication command - requires response processing.

          'mechanism' specifies which authentication mechanism is to
          be used - the valid values are those listed in the 'auth'
          element of 'esmtp_features'.

          'authobject' must be a callable object taking a single argument:

                  data = authobject(challenge)

          It will be called to process the server's challenge response; the
          challenge argument it is passed will be a bytes.  It should return
          an ASCII string that will be base64 encoded and sent to the server.

          Keyword arguments:
              - initial_response_ok: Allow sending the RFC 4954 initial-response
                to the AUTH command, if the authentication methods supports it.
        
auth_cram_md5(self, challenge=None)

   Authobject to use with CRAM-MD5 authentication. Requires self.user
          and self.password to be set.
auth_login(self, challenge=None)

   Authobject to use with LOGIN authentication. Requires self.user and
          self.password to be set.
auth_plain(self, challenge=None)

   Authobject to use with PLAIN authentication. Requires self.user and
          self.password to be set.
close(self)

  Close the connection to the SMTP server.
connect(self, host='localhost', port=0, source_address=None)

  Connect to a host on a given port.

          If the hostname ends with a colon (`:') followed by a number, and
          there is no port specified, that suffix will be stripped off and the
          number interpreted as the port number to use.

          Note: This method is automatically invoked by __init__, if a host is
          specified during instantiation.

        
data(self, msg)

  SMTP 'DATA' command -- sends message data to server.

          Automatically quotes lines beginning with a period per rfc821.
          Raises SMTPDataError if there is an unexpected reply to the
          DATA command; the return value from this method is the final
          response code received when the all data is sent.  If msg
          is a string, lone '\r' and '\n' characters are converted to
          '\r\n' characters.  If msg is bytes, it is transmitted as is.
        
docmd(self, cmd, args='')

  Send a command, and return its response code.
ehlo(self, name='')

   SMTP 'ehlo' command.
          Hostname to send for this command defaults to the FQDN of the local
          host.
        
ehlo_or_helo_if_needed(self)

  Call self.ehlo() and/or self.helo() if needed.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
        
expn(self, address)

  SMTP 'expn' command -- expands a mailing list.
getreply(self)

  Get a reply from the server.

          Returns a tuple consisting of:

            - server response code (e.g. '250', or such, if all goes well)
              Note: returns -1 if it can't read response code.

            - server response string corresponding to response code (multiline
              responses are converted to a single, multiline string).

          Raises SMTPServerDisconnected if end-of-file is reached.
        
has_extn(self, opt)

  Does the server support a given SMTP service extension?
helo(self, name='')

  SMTP 'helo' command.
          Hostname to send for this command defaults to the FQDN of the local
          host.
        
help(self, args='')

  SMTP 'help' command.
          Returns help text from server.
login(self, user, password, *, initial_response_ok=True)

  Log in on an SMTP server that requires authentication.

          The arguments are:
              - user:         The user name to authenticate with.
              - password:     The password for the authentication.

          Keyword arguments:
              - initial_response_ok: Allow sending the RFC 4954 initial-response
                to the AUTH command, if the authentication methods supports it.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          This method will return normally if the authentication was successful.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
           SMTPAuthenticationError  The server didn't accept the username/
                                    password combination.
           SMTPNotSupportedError    The AUTH command is not supported by the
                                    server.
           SMTPException            No suitable authentication method was
                                    found.
        
mail(self, sender, options=())

  SMTP 'mail' command -- begins mail xfer session.

          This method may raise the following exceptions:

           SMTPNotSupportedError  The options parameter includes 'SMTPUTF8'
                                  but the SMTPUTF8 extension is not supported by
                                  the server.
        
noop(self)

  SMTP 'noop' command -- doesn't do anything :>
putcmd(self, cmd, args='')

  Send a command to the server.
quit(self)

  Terminate the SMTP session.
rcpt(self, recip, options=())

  SMTP 'rcpt' command -- indicates 1 recipient for this mail.
rset(self)

  SMTP 'rset' command -- resets session.
send(self, s)

  Send `s' to the server.
send_message(self, msg, from_addr=None, to_addrs=None, mail_options=(), rcpt_options=())

  Converts message to a bytestring and passes it to sendmail.

          The arguments are as for sendmail, except that msg is an
          email.message.Message object.  If from_addr is None or to_addrs is
          None, these arguments are taken from the headers of the Message as
          described in RFC 2822 (a ValueError is raised if there is more than
          one set of 'Resent-' headers).  Regardless of the values of from_addr and
          to_addr, any Bcc field (or Resent-Bcc field, when the Message is a
          resent) of the Message object won't be transmitted.  The Message
          object is then serialized using email.generator.BytesGenerator and
          sendmail is called to transmit the message.  If the sender or any of
          the recipient addresses contain non-ASCII and the server advertises the
          SMTPUTF8 capability, the policy is cloned with utf8 set to True for the
          serialization, and SMTPUTF8 and BODY=8BITMIME are asserted on the send.
          If the server does not support SMTPUTF8, an SMTPNotSupported error is
          raised.  Otherwise the generator is called without modifying the
          policy.

        
sendmail(self, from_addr, to_addrs, msg, mail_options=(), rcpt_options=())

  This command performs an entire mail transaction.

          The arguments are:
              - from_addr    : The address sending this mail.
              - to_addrs     : A list of addresses to send this mail to.  A bare
                               string will be treated as a list with 1 address.
              - msg          : The message to send.
              - mail_options : List of ESMTP options (such as 8bitmime) for the
                               mail command.
              - rcpt_options : List of ESMTP options (such as DSN commands) for
                               all the rcpt commands.

          msg may be a string containing characters in the ASCII range, or a byte
          string.  A string is encoded to bytes using the ascii codec, and lone
          \r and \n characters are converted to \r\n characters.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.  If the server does ESMTP, message size
          and each of the specified options will be passed to it.  If EHLO
          fails, HELO will be tried and ESMTP options suppressed.

          This method will return normally if the mail is accepted for at least
          one recipient.  It returns a dictionary, with one entry for each
          recipient that was refused.  Each entry contains a tuple of the SMTP
          error code and the accompanying error message sent by the server.

          This method may raise the following exceptions:

           SMTPHeloError          The server didn't reply properly to
                                  the helo greeting.
           SMTPRecipientsRefused  The server rejected ALL recipients
                                  (no mail was sent).
           SMTPSenderRefused      The server didn't accept the from_addr.
           SMTPDataError          The server replied with an unexpected
                                  error code (other than a refusal of
                                  a recipient).
           SMTPNotSupportedError  The mail_options parameter includes 'SMTPUTF8'
                                  but the SMTPUTF8 extension is not supported by
                                  the server.

          Note: the connection will be open even after an exception is raised.

          Example:

           >>> import smtplib
           >>> s=smtplib.SMTP("localhost")
           >>> tolist=["one@one.org","two@two.org","three@three.org","four@four.org"]
           >>> msg = '''\
           ... From: Me@my.org
           ... Subject: testin'...
           ...
           ... This is a test '''
           >>> s.sendmail("me@my.org",tolist,msg)
           { "three@three.org" : ( 550 ,"User unknown" ) }
           >>> s.quit()

          In the above example, the message was accepted for delivery to three
          of the four addresses, and one was rejected, with the error code
          550.  If all addresses are accepted, then the method will return an
          empty dictionary.

        
set_debuglevel(self, debuglevel)

  Set the debug output level.

          A non-false value results in debug messages for connection and for all
          messages sent to and received from the server.

        
starttls(self, keyfile=None, certfile=None, context=None)

  Puts the connection to the SMTP server into TLS mode.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          If the server supports TLS, this will encrypt the rest of the SMTP
          session. If you provide the keyfile and certfile parameters,
          the identity of the SMTP server and client can be checked. This,
          however, depends on whether the socket module really checks the
          certificates.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
        
verify(self, address)

  SMTP 'verify' command -- checks for address validity.
verify(self, address)

  SMTP 'verify' command -- checks for address validity.
debuglevel = 0
default_port = 25
does_esmtp = 0
ehlo_msg = 'ehlo'
ehlo_resp = None
file = None
helo_resp = None
sock = None

SMTPAuthenticationError

Authentication error.

    Most probably the server didn't accept the username/password
    combination provided.
    
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPConnectError

Error during connection establishment.
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPDataError

The SMTP server didn't accept the data.
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPException

Base class for all exceptions raised by this module.
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPHeloError

The server refused our HELO reply.
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPNotSupportedError

The command or option is not supported by the SMTP server.

    This exception is raised when an attempt is made to run a command or a
    command with an option which is not supported by the server.
    
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPRecipientsRefused

All recipient addresses refused.

    The errors for each recipient are accessible through the attribute
    'recipients', which is a dictionary of exactly the same sort as
    SMTP.sendmail() returns.
    
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPResponseException

Base class for all exceptions that include an SMTP error code.

    These exceptions are generated in some instances when the SMTP
    server returns an error code.  The error code is stored in the
    `smtp_code' attribute of the error, and the `smtp_error' attribute
    is set to the error message.
    
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPSenderRefused

Sender address refused.

    In addition to the attributes set by on all SMTPResponseException
    exceptions, this sets `sender' to the string that the SMTP refused.
    
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTPServerDisconnected

Not connected to any SMTP server.

    This exception is raised when the server unexpectedly disconnects,
    or when an attempt is made to use the SMTP instance before
    connecting it to a server.
    
with_traceback(...)

  Exception.with_traceback(tb) --
      set self.__traceback__ to tb and return self.
args = <attribute 'args' of 'BaseException' objects>
characters_written = <attribute 'characters_written' of 'OSError' objects>
errno = <member 'errno' of 'OSError' objects>
  POSIX exception code
filename = <member 'filename' of 'OSError' objects>
  exception filename
filename2 = <member 'filename2' of 'OSError' objects>
  second exception filename
strerror = <member 'strerror' of 'OSError' objects>
  exception strerror

SMTP_SSL

 This is a subclass derived from SMTP that connects over an SSL
        encrypted socket (to use this class you need a socket module that was
        compiled with SSL support). If host is not specified, '' (the local
        host) is used. If port is omitted, the standard SMTP-over-SSL port
        (465) is used.  local_hostname and source_address have the same meaning
        as they do in the SMTP class.  keyfile and certfile are also optional -
        they can contain a PEM formatted private key and certificate chain file
        for the SSL connection. context also optional, can contain a
        SSLContext, and is an alternative to keyfile and certfile; If it is
        specified both keyfile and certfile must be None.

        
auth(self, mechanism, authobject, *, initial_response_ok=True)

  Authentication command - requires response processing.

          'mechanism' specifies which authentication mechanism is to
          be used - the valid values are those listed in the 'auth'
          element of 'esmtp_features'.

          'authobject' must be a callable object taking a single argument:

                  data = authobject(challenge)

          It will be called to process the server's challenge response; the
          challenge argument it is passed will be a bytes.  It should return
          an ASCII string that will be base64 encoded and sent to the server.

          Keyword arguments:
              - initial_response_ok: Allow sending the RFC 4954 initial-response
                to the AUTH command, if the authentication methods supports it.
        
auth_cram_md5(self, challenge=None)

   Authobject to use with CRAM-MD5 authentication. Requires self.user
          and self.password to be set.
auth_login(self, challenge=None)

   Authobject to use with LOGIN authentication. Requires self.user and
          self.password to be set.
auth_plain(self, challenge=None)

   Authobject to use with PLAIN authentication. Requires self.user and
          self.password to be set.
close(self)

  Close the connection to the SMTP server.
connect(self, host='localhost', port=0, source_address=None)

  Connect to a host on a given port.

          If the hostname ends with a colon (`:') followed by a number, and
          there is no port specified, that suffix will be stripped off and the
          number interpreted as the port number to use.

          Note: This method is automatically invoked by __init__, if a host is
          specified during instantiation.

        
data(self, msg)

  SMTP 'DATA' command -- sends message data to server.

          Automatically quotes lines beginning with a period per rfc821.
          Raises SMTPDataError if there is an unexpected reply to the
          DATA command; the return value from this method is the final
          response code received when the all data is sent.  If msg
          is a string, lone '\r' and '\n' characters are converted to
          '\r\n' characters.  If msg is bytes, it is transmitted as is.
        
docmd(self, cmd, args='')

  Send a command, and return its response code.
ehlo(self, name='')

   SMTP 'ehlo' command.
          Hostname to send for this command defaults to the FQDN of the local
          host.
        
ehlo_or_helo_if_needed(self)

  Call self.ehlo() and/or self.helo() if needed.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
        
expn(self, address)

  SMTP 'expn' command -- expands a mailing list.
getreply(self)

  Get a reply from the server.

          Returns a tuple consisting of:

            - server response code (e.g. '250', or such, if all goes well)
              Note: returns -1 if it can't read response code.

            - server response string corresponding to response code (multiline
              responses are converted to a single, multiline string).

          Raises SMTPServerDisconnected if end-of-file is reached.
        
has_extn(self, opt)

  Does the server support a given SMTP service extension?
helo(self, name='')

  SMTP 'helo' command.
          Hostname to send for this command defaults to the FQDN of the local
          host.
        
help(self, args='')

  SMTP 'help' command.
          Returns help text from server.
login(self, user, password, *, initial_response_ok=True)

  Log in on an SMTP server that requires authentication.

          The arguments are:
              - user:         The user name to authenticate with.
              - password:     The password for the authentication.

          Keyword arguments:
              - initial_response_ok: Allow sending the RFC 4954 initial-response
                to the AUTH command, if the authentication methods supports it.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          This method will return normally if the authentication was successful.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
           SMTPAuthenticationError  The server didn't accept the username/
                                    password combination.
           SMTPNotSupportedError    The AUTH command is not supported by the
                                    server.
           SMTPException            No suitable authentication method was
                                    found.
        
mail(self, sender, options=())

  SMTP 'mail' command -- begins mail xfer session.

          This method may raise the following exceptions:

           SMTPNotSupportedError  The options parameter includes 'SMTPUTF8'
                                  but the SMTPUTF8 extension is not supported by
                                  the server.
        
noop(self)

  SMTP 'noop' command -- doesn't do anything :>
putcmd(self, cmd, args='')

  Send a command to the server.
quit(self)

  Terminate the SMTP session.
rcpt(self, recip, options=())

  SMTP 'rcpt' command -- indicates 1 recipient for this mail.
rset(self)

  SMTP 'rset' command -- resets session.
send(self, s)

  Send `s' to the server.
send_message(self, msg, from_addr=None, to_addrs=None, mail_options=(), rcpt_options=())

  Converts message to a bytestring and passes it to sendmail.

          The arguments are as for sendmail, except that msg is an
          email.message.Message object.  If from_addr is None or to_addrs is
          None, these arguments are taken from the headers of the Message as
          described in RFC 2822 (a ValueError is raised if there is more than
          one set of 'Resent-' headers).  Regardless of the values of from_addr and
          to_addr, any Bcc field (or Resent-Bcc field, when the Message is a
          resent) of the Message object won't be transmitted.  The Message
          object is then serialized using email.generator.BytesGenerator and
          sendmail is called to transmit the message.  If the sender or any of
          the recipient addresses contain non-ASCII and the server advertises the
          SMTPUTF8 capability, the policy is cloned with utf8 set to True for the
          serialization, and SMTPUTF8 and BODY=8BITMIME are asserted on the send.
          If the server does not support SMTPUTF8, an SMTPNotSupported error is
          raised.  Otherwise the generator is called without modifying the
          policy.

        
sendmail(self, from_addr, to_addrs, msg, mail_options=(), rcpt_options=())

  This command performs an entire mail transaction.

          The arguments are:
              - from_addr    : The address sending this mail.
              - to_addrs     : A list of addresses to send this mail to.  A bare
                               string will be treated as a list with 1 address.
              - msg          : The message to send.
              - mail_options : List of ESMTP options (such as 8bitmime) for the
                               mail command.
              - rcpt_options : List of ESMTP options (such as DSN commands) for
                               all the rcpt commands.

          msg may be a string containing characters in the ASCII range, or a byte
          string.  A string is encoded to bytes using the ascii codec, and lone
          \r and \n characters are converted to \r\n characters.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.  If the server does ESMTP, message size
          and each of the specified options will be passed to it.  If EHLO
          fails, HELO will be tried and ESMTP options suppressed.

          This method will return normally if the mail is accepted for at least
          one recipient.  It returns a dictionary, with one entry for each
          recipient that was refused.  Each entry contains a tuple of the SMTP
          error code and the accompanying error message sent by the server.

          This method may raise the following exceptions:

           SMTPHeloError          The server didn't reply properly to
                                  the helo greeting.
           SMTPRecipientsRefused  The server rejected ALL recipients
                                  (no mail was sent).
           SMTPSenderRefused      The server didn't accept the from_addr.
           SMTPDataError          The server replied with an unexpected
                                  error code (other than a refusal of
                                  a recipient).
           SMTPNotSupportedError  The mail_options parameter includes 'SMTPUTF8'
                                  but the SMTPUTF8 extension is not supported by
                                  the server.

          Note: the connection will be open even after an exception is raised.

          Example:

           >>> import smtplib
           >>> s=smtplib.SMTP("localhost")
           >>> tolist=["one@one.org","two@two.org","three@three.org","four@four.org"]
           >>> msg = '''\
           ... From: Me@my.org
           ... Subject: testin'...
           ...
           ... This is a test '''
           >>> s.sendmail("me@my.org",tolist,msg)
           { "three@three.org" : ( 550 ,"User unknown" ) }
           >>> s.quit()

          In the above example, the message was accepted for delivery to three
          of the four addresses, and one was rejected, with the error code
          550.  If all addresses are accepted, then the method will return an
          empty dictionary.

        
set_debuglevel(self, debuglevel)

  Set the debug output level.

          A non-false value results in debug messages for connection and for all
          messages sent to and received from the server.

        
starttls(self, keyfile=None, certfile=None, context=None)

  Puts the connection to the SMTP server into TLS mode.

          If there has been no previous EHLO or HELO command this session, this
          method tries ESMTP EHLO first.

          If the server supports TLS, this will encrypt the rest of the SMTP
          session. If you provide the keyfile and certfile parameters,
          the identity of the SMTP server and client can be checked. This,
          however, depends on whether the socket module really checks the
          certificates.

          This method may raise the following exceptions:

           SMTPHeloError            The server didn't reply properly to
                                    the helo greeting.
        
verify(self, address)

  SMTP 'verify' command -- checks for address validity.
verify(self, address)

  SMTP 'verify' command -- checks for address validity.
debuglevel = 0
default_port = 465
does_esmtp = 0
ehlo_msg = 'ehlo'
ehlo_resp = None
file = None
helo_resp = None
sock = None

Functions

encode_base64

body_encode(s, maxlinelen=76, eol='\n')

  Encode a string with base64.

      Each line will be wrapped at, at most, maxlinelen characters (defaults to
      76 characters).

      Each line of encoded text will end with eol, which defaults to "\n".  Set
      this to "\r\n" if you will be using the result of this function directly
      in an email.
    

quoteaddr

quoteaddr(addrstring)

  Quote a subset of the email addresses defined by RFC 821.

      Should be able to handle anything email.utils.parseaddr can handle.
    

quotedata

quotedata(data)

  Quote data for email.

      Double leading '.', and change Unix newline '\n', or Mac '\r' into
      Internet CRLF end-of-line.
    

Other members

CRLF = '\r\n'
LMTP_PORT = 2003
OLDSTYLE_AUTH = re.compile('auth=(.*)', re.IGNORECASE)
SMTP_PORT = 25
SMTP_SSL_PORT = 465
bCRLF = b'\r\n'

Modules

base64

copy

datetime

email

hmac

io

re

socket

ssl

sys