smtplib
index
/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/smtplib.py
Module Docs

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()

 
Modules
       
base64
email
hmac
re
socket
ssl

 
Classes
       
exceptions.Exception(exceptions.BaseException)
SMTPException
SMTPRecipientsRefused
SMTPResponseException
SMTPAuthenticationError
SMTPConnectError
SMTPDataError
SMTPHeloError
SMTPSenderRefused
SMTPServerDisconnected
SMTP
SMTP_SSL

 
class 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.
 
  Methods defined here:
__init__(self, host='', port=0, local_hostname=None, timeout=<object object>)
Initialize a new instance.
 
If specified, `host' is the name of the remote host to which to
connect.  If specified, `port' specifies the port to which to connect.
By default, smtplib.SMTP_PORT is used.  If a host is specified the
connect method is called, and if it returns anything other than a
success code an SMTPConnectError is raised.  If specified,
`local_hostname` is used as the FQDN of the local host for the
HELO/EHLO command.  Otherwise, the local hostname is found using
socket.getfqdn().
close(self)
Close the connection to the SMTP server.
connect(self, host='localhost', port=0)
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.
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)
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.
 
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.
 SMTPException            No suitable authentication method was
                          found.
mail(self, sender, options=[])
SMTP 'mail' command -- begins mail xfer session.
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, str)
Send `str' to the server.
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.
 
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).
 
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)
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.
vrfy = verify(self, address)

Data and other attributes defined here:
debuglevel = 0
default_port = 25
does_esmtp = 0
ehlo_msg = 'ehlo'
ehlo_resp = None
file = None
helo_resp = None

 
class SMTPAuthenticationError(SMTPResponseException)
    Authentication error.
 
Most probably the server didn't accept the username/password
combination provided.
 
 
Method resolution order:
SMTPAuthenticationError
SMTPResponseException
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Methods inherited from SMTPResponseException:
__init__(self, code, msg)

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPConnectError(SMTPResponseException)
    Error during connection establishment.
 
 
Method resolution order:
SMTPConnectError
SMTPResponseException
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Methods inherited from SMTPResponseException:
__init__(self, code, msg)

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPDataError(SMTPResponseException)
    The SMTP server didn't accept the data.
 
 
Method resolution order:
SMTPDataError
SMTPResponseException
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Methods inherited from SMTPResponseException:
__init__(self, code, msg)

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPException(exceptions.Exception)
    Base class for all exceptions raised by this module.
 
 
Method resolution order:
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Data descriptors defined here:
__weakref__
list of weak references to the object (if defined)

Methods inherited from exceptions.Exception:
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPHeloError(SMTPResponseException)
    The server refused our HELO reply.
 
 
Method resolution order:
SMTPHeloError
SMTPResponseException
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Methods inherited from SMTPResponseException:
__init__(self, code, msg)

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPRecipientsRefused(SMTPException)
    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.
 
 
Method resolution order:
SMTPRecipientsRefused
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Methods defined here:
__init__(self, recipients)

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPResponseException(SMTPException)
    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.
 
 
Method resolution order:
SMTPResponseException
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Methods defined here:
__init__(self, code, msg)

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPSenderRefused(SMTPResponseException)
    Sender address refused.
 
In addition to the attributes set by on all SMTPResponseException
exceptions, this sets `sender' to the string that the SMTP refused.
 
 
Method resolution order:
SMTPSenderRefused
SMTPResponseException
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Methods defined here:
__init__(self, code, msg, sender)

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTPServerDisconnected(SMTPException)
    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.
 
 
Method resolution order:
SMTPServerDisconnected
SMTPException
exceptions.Exception
exceptions.BaseException
__builtin__.object

Data descriptors inherited from SMTPException:
__weakref__
list of weak references to the object (if defined)

Methods inherited from exceptions.Exception:
__init__(...)
x.__init__(...) initializes x; see help(type(x)) for signature

Data and other attributes inherited from exceptions.Exception:
__new__ = <built-in method __new__ of type object>
T.__new__(S, ...) -> a new object with type S, a subtype of T

Methods inherited from exceptions.BaseException:
__delattr__(...)
x.__delattr__('name') <==> del x.name
__getattribute__(...)
x.__getattribute__('name') <==> x.name
__getitem__(...)
x.__getitem__(y) <==> x[y]
__getslice__(...)
x.__getslice__(i, j) <==> x[i:j]
 
Use of negative indices is not supported.
__reduce__(...)
__repr__(...)
x.__repr__() <==> repr(x)
__setattr__(...)
x.__setattr__('name', value) <==> x.name = value
__setstate__(...)
__str__(...)
x.__str__() <==> str(x)
__unicode__(...)

Data descriptors inherited from exceptions.BaseException:
__dict__
args
message

 
class SMTP_SSL(SMTP)
    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 has the same meaning as it does 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.
 
  Methods defined here:
__init__(self, host='', port=0, local_hostname=None, keyfile=None, certfile=None, timeout=<object object>)

Data and other attributes defined here:
default_port = 465

Methods inherited from SMTP:
close(self)
Close the connection to the SMTP server.
connect(self, host='localhost', port=0)
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.
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)
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.
 
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.
 SMTPException            No suitable authentication method was
                          found.
mail(self, sender, options=[])
SMTP 'mail' command -- begins mail xfer session.
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, str)
Send `str' to the server.
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.
 
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).
 
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)
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.
vrfy = verify(self, address)
SMTP 'verify' command -- checks for address validity.

Data and other attributes inherited from SMTP:
debuglevel = 0
does_esmtp = 0
ehlo_msg = 'ehlo'
ehlo_resp = None
file = None
helo_resp = None

 
Functions
       
quoteaddr(addr)
Quote a subset of the email addresses defined by RFC 821.
 
Should be able to handle anything rfc822.parseaddr can handle.
quotedata(data)
Quote data for email.
 
Double leading '.', and change Unix newline '\n', or Mac '\r' into
Internet CRLF end-of-line.

 
Data
        __all__ = ['SMTPException', 'SMTPServerDisconnected', 'SMTPResponseException', 'SMTPSenderRefused', 'SMTPRecipientsRefused', 'SMTPDataError', 'SMTPConnectError', 'SMTPHeloError', 'SMTPAuthenticationError', 'quoteaddr', 'quotedata', 'SMTP', 'SMTP_SSL']