The smtplib module defines an SMTP client session object that
can be used to send mail to any Internet machine with an SMTP or ESMTP
listener daemon. For details of SMTP and ESMTP operation, consult
RFC 821 (Simple Mail Transfer Protocol) and RFC 1869
(SMTP Service Extensions).
classSMTP(
[host[, port[,
local_hostname]]])
A SMTP instance encapsulates an SMTP connection. It has
methods that support a full repertoire of SMTP and ESMTP
operations. If the optional host and port parameters are given, the
SMTP connect() method is called with those parameters during
initialization. An SMTPConnectError is raised if the
specified host doesn't respond correctly.
For normal use, you should only require the initialization/connect,
sendmail(), and quit() methods. An example is
included below.
A nice selection of exceptions is defined as well:
exceptionSMTPException
Base exception class for all exceptions raised by this module.
exceptionSMTPServerDisconnected
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.
exceptionSMTPResponseException
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.
exceptionSMTPSenderRefused
Sender address refused. In addition to the attributes set by on all
SMTPResponseException exceptions, this sets `sender' to
the string that the SMTP server refused.
exceptionSMTPRecipientsRefused
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.
exceptionSMTPDataError
The SMTP server refused to accept the message data.
exceptionSMTPConnectError
Error occurred during establishment of a connection with the server.
Definition of the ESMTP
extensions for SMTP. This describes a framework for
extending SMTP with new commands, supporting dynamic
discovery of the commands provided by the server, and
defines a few additional commands.