2001-09-26 02:23:47 -03:00
|
|
|
% Copyright (C) 2001 Python Software Foundation
|
|
|
|
% Author: barry@zope.com (Barry Warsaw)
|
|
|
|
|
2001-09-26 13:52:18 -03:00
|
|
|
\section{\module{email} ---
|
2001-09-26 02:23:47 -03:00
|
|
|
An email and MIME handling package}
|
|
|
|
|
|
|
|
\declaremodule{standard}{email}
|
|
|
|
\modulesynopsis{Package supporting the parsing, manipulating, and
|
|
|
|
generating email messages, including MIME documents.}
|
|
|
|
\moduleauthor{Barry A. Warsaw}{barry@zope.com}
|
2001-09-27 17:09:39 -03:00
|
|
|
\sectionauthor{Barry A. Warsaw}{barry@zope.com}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
\versionadded{2.2}
|
|
|
|
|
|
|
|
The \module{email} package is a library for managing email messages,
|
|
|
|
including MIME and other \rfc{2822}-based message documents. It
|
|
|
|
subsumes most of the functionality in several older standard modules
|
2001-09-26 19:21:52 -03:00
|
|
|
such as \refmodule{rfc822}, \refmodule{mimetools},
|
|
|
|
\refmodule{multifile}, and other non-standard packages such as
|
|
|
|
\module{mimecntl}.
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
The primary distinguishing feature of the \module{email} package is
|
|
|
|
that it splits the parsing and generating of email messages from the
|
|
|
|
internal \emph{object model} representation of email. Applications
|
|
|
|
using the \module{email} package deal primarily with objects; you can
|
|
|
|
add sub-objects to messages, remove sub-objects from messages,
|
|
|
|
completely re-arrange the contents, etc. There is a separate parser
|
|
|
|
and a separate generator which handles the transformation from flat
|
|
|
|
text to the object module, and then back to flat text again. There
|
|
|
|
are also handy subclasses for some common MIME object types, and a few
|
|
|
|
miscellaneous utilities that help with such common tasks as extracting
|
|
|
|
and parsing message field values, creating RFC-compliant dates, etc.
|
|
|
|
|
|
|
|
The following sections describe the functionality of the
|
|
|
|
\module{email} package. The ordering follows a progression that
|
|
|
|
should be common in applications: an email message is read as flat
|
|
|
|
text from a file or other source, the text is parsed to produce an
|
|
|
|
object model representation of the email message, this model is
|
|
|
|
manipulated, and finally the model is rendered back into
|
|
|
|
flat text.
|
|
|
|
|
|
|
|
It is perfectly feasible to create the object model out of whole cloth
|
2001-09-26 19:21:52 -03:00
|
|
|
--- i.e. completely from scratch. From there, a similar progression
|
|
|
|
can be taken as above.
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
Also included are detailed specifications of all the classes and
|
|
|
|
modules that the \module{email} package provides, the exception
|
|
|
|
classes you might encounter while using the \module{email} package,
|
|
|
|
some auxiliary utilities, and a few examples. For users of the older
|
|
|
|
\module{mimelib} package, from which the \module{email} package is
|
|
|
|
descendent, a section on differences and porting is provided.
|
|
|
|
|
|
|
|
\subsection{Representing an email message}
|
2001-09-26 19:21:52 -03:00
|
|
|
\input{emailmessage}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
\subsection{Parsing email messages}
|
2001-09-26 19:21:52 -03:00
|
|
|
\input{emailparser}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
\subsection{Generating MIME documents}
|
2001-09-26 19:21:52 -03:00
|
|
|
\input{emailgenerator}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
\subsection{Creating email and MIME objects from scratch}
|
|
|
|
|
|
|
|
Ordinarily, you get a message object tree by passing some text to a
|
|
|
|
parser, which parses the text and returns the root of the message
|
|
|
|
object tree. However you can also build a complete object tree from
|
|
|
|
scratch, or even individual \class{Message} objects by hand. In fact,
|
|
|
|
you can also take an existing tree and add new \class{Message}
|
|
|
|
objects, move them around, etc. This makes a very convenient
|
|
|
|
interface for slicing-and-dicing MIME messages.
|
|
|
|
|
|
|
|
You can create a new object tree by creating \class{Message}
|
|
|
|
instances, adding payloads and all the appropriate headers manually.
|
|
|
|
For MIME messages though, the \module{email} package provides some
|
|
|
|
convenient classes to make things easier. Each of these classes
|
|
|
|
should be imported from a module with the same name as the class, from
|
|
|
|
within the \module{email} package. E.g.:
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
import email.MIMEImage.MIMEImage
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
or
|
|
|
|
|
|
|
|
\begin{verbatim}
|
|
|
|
from email.MIMEText import MIMEText
|
|
|
|
\end{verbatim}
|
|
|
|
|
|
|
|
Here are the classes:
|
|
|
|
|
|
|
|
\begin{classdesc}{MIMEBase}{_maintype, _subtype, **_params}
|
|
|
|
This is the base class for all the MIME-specific subclasses of
|
|
|
|
\class{Message}. Ordinarily you won't create instances specifically
|
|
|
|
of \class{MIMEBase}, although you could. \class{MIMEBase} is provided
|
|
|
|
primarily as a convenient base class for more specific MIME-aware
|
|
|
|
subclasses.
|
|
|
|
|
2001-09-26 19:21:52 -03:00
|
|
|
\var{_maintype} is the \mailheader{Content-Type} major type
|
|
|
|
(e.g. \mimetype{text} or \mimetype{image}), and \var{_subtype} is the
|
|
|
|
\mailheader{Content-Type} minor type
|
|
|
|
(e.g. \mimetype{plain} or \mimetype{gif}). \var{_params} is a parameter
|
2001-09-26 02:23:47 -03:00
|
|
|
key/value dictionary and is passed directly to
|
|
|
|
\method{Message.add_header()}.
|
|
|
|
|
2001-09-26 13:52:18 -03:00
|
|
|
The \class{MIMEBase} class always adds a \mailheader{Content-Type} header
|
2001-09-26 02:23:47 -03:00
|
|
|
(based on \var{_maintype}, \var{_subtype}, and \var{_params}), and a
|
2001-09-26 13:52:18 -03:00
|
|
|
\mailheader{MIME-Version} header (always set to \code{1.0}).
|
2001-09-26 02:23:47 -03:00
|
|
|
\end{classdesc}
|
|
|
|
|
2001-10-09 16:14:17 -03:00
|
|
|
\begin{classdesc}{MIMEAudio}{_audiodata\optional{, _subtype\optional{,
|
|
|
|
_encoder\optional{, **_params}}}}
|
|
|
|
|
|
|
|
A subclass of \class{MIMEBase}, the \class{MIMEAudio} class is used to
|
|
|
|
create MIME message objects of major type \mimetype{audio}.
|
2001-10-09 16:37:51 -03:00
|
|
|
\var{_audiodata} is a string containing the raw audio data. If this
|
2001-10-09 16:14:17 -03:00
|
|
|
data can be decoded by the standard Python module \refmodule{sndhdr},
|
|
|
|
then the subtype will be automatically included in the
|
|
|
|
\mailheader{Content-Type} header. Otherwise you can explicitly specify the
|
|
|
|
audio subtype via the \var{_subtype} parameter. If the minor type could
|
|
|
|
not be guessed and \var{_subtype} was not given, then \exception{TypeError}
|
|
|
|
is raised.
|
|
|
|
|
|
|
|
Optional \var{_encoder} is a callable (i.e. function) which will
|
|
|
|
perform the actual encoding of the audio data for transport. This
|
|
|
|
callable takes one argument, which is the \class{MIMEAudio} instance.
|
|
|
|
It should use \method{get_payload()} and \method{set_payload()} to
|
|
|
|
change the payload to encoded form. It should also add any
|
|
|
|
\mailheader{Content-Transfer-Encoding} or other headers to the message
|
|
|
|
object as necessary. The default encoding is \emph{Base64}. See the
|
|
|
|
\refmodule{email.Encoders} module for a list of the built-in encoders.
|
|
|
|
|
|
|
|
\var{_params} are passed straight through to the \class{MIMEBase}
|
|
|
|
constructor.
|
|
|
|
\end{classdesc}
|
|
|
|
|
2001-09-26 02:23:47 -03:00
|
|
|
\begin{classdesc}{MIMEImage}{_imagedata\optional{, _subtype\optional{,
|
|
|
|
_encoder\optional{, **_params}}}}
|
|
|
|
|
|
|
|
A subclass of \class{MIMEBase}, the \class{MIMEImage} class is used to
|
2001-09-26 13:52:18 -03:00
|
|
|
create MIME message objects of major type \mimetype{image}.
|
2001-09-26 02:23:47 -03:00
|
|
|
\var{_imagedata} is a string containing the raw image data. If this
|
|
|
|
data can be decoded by the standard Python module \refmodule{imghdr},
|
|
|
|
then the subtype will be automatically included in the
|
2001-09-26 13:52:18 -03:00
|
|
|
\mailheader{Content-Type} header. Otherwise you can explicitly specify the
|
2001-09-26 02:23:47 -03:00
|
|
|
image subtype via the \var{_subtype} parameter. If the minor type could
|
2001-09-26 13:52:18 -03:00
|
|
|
not be guessed and \var{_subtype} was not given, then \exception{TypeError}
|
2001-09-26 02:23:47 -03:00
|
|
|
is raised.
|
|
|
|
|
|
|
|
Optional \var{_encoder} is a callable (i.e. function) which will
|
|
|
|
perform the actual encoding of the image data for transport. This
|
|
|
|
callable takes one argument, which is the \class{MIMEImage} instance.
|
|
|
|
It should use \method{get_payload()} and \method{set_payload()} to
|
|
|
|
change the payload to encoded form. It should also add any
|
2001-09-26 13:52:18 -03:00
|
|
|
\mailheader{Content-Transfer-Encoding} or other headers to the message
|
2001-09-26 02:23:47 -03:00
|
|
|
object as necessary. The default encoding is \emph{Base64}. See the
|
|
|
|
\refmodule{email.Encoders} module for a list of the built-in encoders.
|
|
|
|
|
|
|
|
\var{_params} are passed straight through to the \class{MIMEBase}
|
|
|
|
constructor.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{MIMEText}{_text\optional{, _subtype\optional{,
|
|
|
|
_charset\optional{, _encoder}}}}
|
2001-09-26 19:21:52 -03:00
|
|
|
|
2001-09-26 02:23:47 -03:00
|
|
|
A subclass of \class{MIMEBase}, the \class{MIMEText} class is used to
|
2001-09-26 19:21:52 -03:00
|
|
|
create MIME objects of major type \mimetype{text}. \var{_text} is the
|
|
|
|
string for the payload. \var{_subtype} is the minor type and defaults
|
|
|
|
to \mimetype{plain}. \var{_charset} is the character set of the text and is
|
2001-09-26 02:23:47 -03:00
|
|
|
passed as a parameter to the \class{MIMEBase} constructor; it defaults
|
|
|
|
to \code{us-ascii}. No guessing or encoding is performed on the text
|
|
|
|
data, but a newline is appended to \var{_text} if it doesn't already
|
|
|
|
end with a newline.
|
|
|
|
|
|
|
|
The \var{_encoding} argument is as with the \class{MIMEImage} class
|
|
|
|
constructor, except that the default encoding for \class{MIMEText}
|
|
|
|
objects is one that doesn't actually modify the payload, but does set
|
2001-09-26 13:52:18 -03:00
|
|
|
the \mailheader{Content-Transfer-Encoding} header to \code{7bit} or
|
2001-09-26 02:23:47 -03:00
|
|
|
\code{8bit} as appropriate.
|
|
|
|
\end{classdesc}
|
|
|
|
|
|
|
|
\begin{classdesc}{MIMEMessage}{_msg\optional{, _subtype}}
|
|
|
|
A subclass of \class{MIMEBase}, the \class{MIMEMessage} class is used to
|
2001-09-26 13:52:18 -03:00
|
|
|
create MIME objects of main type \mimetype{message}. \var{_msg} is used as
|
2001-09-26 02:23:47 -03:00
|
|
|
the payload, and must be an instance of class \class{Message} (or a
|
|
|
|
subclass thereof), otherwise a \exception{TypeError} is raised.
|
|
|
|
|
|
|
|
Optional \var{_subtype} sets the subtype of the message; it defaults
|
2001-09-26 13:52:18 -03:00
|
|
|
to \mimetype{rfc822}.
|
2001-09-26 02:23:47 -03:00
|
|
|
\end{classdesc}
|
|
|
|
|
2001-09-26 19:21:52 -03:00
|
|
|
\subsection{Encoders}
|
|
|
|
\input{emailencoders}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
2001-09-26 19:21:52 -03:00
|
|
|
\subsection{Exception classes}
|
|
|
|
\input{emailexc}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
2001-09-26 19:21:52 -03:00
|
|
|
\subsection{Miscellaneous utilities}
|
|
|
|
\input{emailutil}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
2001-09-26 19:21:52 -03:00
|
|
|
\subsection{Iterators}
|
|
|
|
\input{emailiter}
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
\subsection{Differences from \module{mimelib}}
|
|
|
|
|
|
|
|
The \module{email} package was originally prototyped as a separate
|
2001-09-26 19:21:52 -03:00
|
|
|
library called
|
|
|
|
\ulink{\module{mimelib}}{http://mimelib.sf.net/}.
|
|
|
|
Changes have been made so that
|
2001-09-26 02:23:47 -03:00
|
|
|
method names are more consistent, and some methods or modules have
|
|
|
|
either been added or removed. The semantics of some of the methods
|
|
|
|
have also changed. For the most part, any functionality available in
|
2001-09-27 17:09:39 -03:00
|
|
|
\module{mimelib} is still available in the \refmodule{email} package,
|
2001-09-26 02:23:47 -03:00
|
|
|
albeit often in a different way.
|
|
|
|
|
|
|
|
Here is a brief description of the differences between the
|
2001-09-27 17:09:39 -03:00
|
|
|
\module{mimelib} and the \refmodule{email} packages, along with hints on
|
2001-09-26 02:23:47 -03:00
|
|
|
how to port your applications.
|
|
|
|
|
|
|
|
Of course, the most visible difference between the two packages is
|
2001-09-27 17:09:39 -03:00
|
|
|
that the package name has been changed to \refmodule{email}. In
|
2001-09-26 02:23:47 -03:00
|
|
|
addition, the top-level package has the following differences:
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item \function{messageFromString()} has been renamed to
|
|
|
|
\function{message_from_string()}.
|
|
|
|
\item \function{messageFromFile()} has been renamed to
|
|
|
|
\function{message_from_file()}.
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
The \class{Message} class has the following differences:
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item The method \method{asString()} was renamed to \method{as_string()}.
|
|
|
|
\item The method \method{ismultipart()} was renamed to
|
|
|
|
\method{is_multipart()}.
|
|
|
|
\item The \method{get_payload()} method has grown a \var{decode}
|
|
|
|
optional argument.
|
|
|
|
\item The method \method{getall()} was renamed to \method{get_all()}.
|
|
|
|
\item The method \method{addheader()} was renamed to \method{add_header()}.
|
|
|
|
\item The method \method{gettype()} was renamed to \method{get_type()}.
|
|
|
|
\item The method\method{getmaintype()} was renamed to
|
|
|
|
\method{get_main_type()}.
|
|
|
|
\item The method \method{getsubtype()} was renamed to
|
|
|
|
\method{get_subtype()}.
|
|
|
|
\item The method \method{getparams()} was renamed to
|
|
|
|
\method{get_params()}.
|
|
|
|
Also, whereas \method{getparams()} returned a list of strings,
|
|
|
|
\method{get_params()} returns a list of 2-tuples, effectively
|
2001-09-26 19:21:52 -03:00
|
|
|
the key/value pairs of the parameters, split on the \character{=}
|
2001-09-26 02:23:47 -03:00
|
|
|
sign.
|
|
|
|
\item The method \method{getparam()} was renamed to \method{get_param()}.
|
|
|
|
\item The method \method{getcharsets()} was renamed to
|
|
|
|
\method{get_charsets()}.
|
|
|
|
\item The method \method{getfilename()} was renamed to
|
|
|
|
\method{get_filename()}.
|
|
|
|
\item The method \method{getboundary()} was renamed to
|
|
|
|
\method{get_boundary()}.
|
|
|
|
\item The method \method{setboundary()} was renamed to
|
|
|
|
\method{set_boundary()}.
|
|
|
|
\item The method \method{getdecodedpayload()} was removed. To get
|
|
|
|
similar functionality, pass the value 1 to the \var{decode} flag
|
|
|
|
of the {get_payload()} method.
|
|
|
|
\item The method \method{getpayloadastext()} was removed. Similar
|
|
|
|
functionality
|
|
|
|
is supported by the \class{DecodedGenerator} class in the
|
|
|
|
\refmodule{email.Generator} module.
|
|
|
|
\item The method \method{getbodyastext()} was removed. You can get
|
|
|
|
similar functionality by creating an iterator with
|
|
|
|
\function{typed_subpart_iterator()} in the
|
|
|
|
\refmodule{email.Iterators} module.
|
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
The \class{Parser} class has no differences in its public interface.
|
|
|
|
It does have some additional smarts to recognize
|
2001-09-26 13:52:18 -03:00
|
|
|
\mimetype{message/delivery-status} type messages, which it represents as
|
2001-09-26 02:23:47 -03:00
|
|
|
a \class{Message} instance containing separate \class{Message}
|
|
|
|
subparts for each header block in the delivery status
|
|
|
|
notification\footnote{Delivery Status Notifications (DSN) are defined
|
2001-09-27 17:09:39 -03:00
|
|
|
in \rfc{1894}.}.
|
2001-09-26 02:23:47 -03:00
|
|
|
|
|
|
|
The \class{Generator} class has no differences in its public
|
|
|
|
interface. There is a new class in the \refmodule{email.Generator}
|
|
|
|
module though, called \class{DecodedGenerator} which provides most of
|
|
|
|
the functionality previously available in the
|
|
|
|
\method{Message.getpayloadastext()} method.
|
|
|
|
|
|
|
|
The following modules and classes have been changed:
|
|
|
|
|
|
|
|
\begin{itemize}
|
|
|
|
\item The \class{MIMEBase} class constructor arguments \var{_major}
|
|
|
|
and \var{_minor} have changed to \var{_maintype} and
|
|
|
|
\var{_subtype} respectively.
|
|
|
|
\item The \code{Image} class/module has been renamed to
|
|
|
|
\code{MIMEImage}. The \var{_minor} argument has been renamed to
|
|
|
|
\var{_subtype}.
|
|
|
|
\item The \code{Text} class/module has been renamed to
|
|
|
|
\code{MIMEText}. The \var{_minor} argument has been renamed to
|
|
|
|
\var{_subtype}.
|
|
|
|
\item The \code{MessageRFC822} class/module has been renamed to
|
|
|
|
\code{MIMEMessage}. Note that an earlier version of
|
|
|
|
\module{mimelib} called this class/module \code{RFC822}, but
|
|
|
|
that clashed with the Python standard library module
|
|
|
|
\refmodule{rfc822} on some case-insensitive file systems.
|
|
|
|
|
|
|
|
Also, the \class{MIMEMessage} class now represents any kind of
|
2001-09-26 13:52:18 -03:00
|
|
|
MIME message with main type \mimetype{message}. It takes an
|
2001-09-26 02:23:47 -03:00
|
|
|
optional argument \var{_subtype} which is used to set the MIME
|
2001-09-26 13:52:18 -03:00
|
|
|
subtype. \var{_subtype} defaults to \mimetype{rfc822}.
|
2001-09-26 02:23:47 -03:00
|
|
|
\end{itemize}
|
|
|
|
|
|
|
|
\module{mimelib} provided some utility functions in its
|
|
|
|
\module{address} and \module{date} modules. All of these functions
|
|
|
|
have been moved to the \refmodule{email.Utils} module.
|
|
|
|
|
|
|
|
The \code{MsgReader} class/module has been removed. Its functionality
|
|
|
|
is most closely supported in the \function{body_line_iterator()}
|
|
|
|
function in the \refmodule{email.Iterators} module.
|
|
|
|
|
|
|
|
\subsection{Examples}
|
|
|
|
|
|
|
|
Coming soon...
|