blob: fc206f4db289e351108007c41f81b470249552a5 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`email` --- An email and MIME handling package
2===================================================
3
4.. module:: email
Georg Brandl3f076d82009-05-17 11:28:33 +00005 :synopsis: Package supporting the parsing, manipulating, and generating
6 email messages, including MIME documents.
Georg Brandl116aa622007-08-15 14:28:22 +00007.. moduleauthor:: Barry A. Warsaw <barry@python.org>
8.. sectionauthor:: Barry A. Warsaw <barry@python.org>
R. David Murray96fd54e2010-10-08 15:55:28 +00009.. Copyright (C) 2001-2010 Python Software Foundation
Georg Brandl116aa622007-08-15 14:28:22 +000010
11
Georg Brandl116aa622007-08-15 14:28:22 +000012The :mod:`email` package is a library for managing email messages, including
Georg Brandl83e9f4c2008-06-12 18:52:31 +000013MIME and other :rfc:`2822`\ -based message documents. It is specifically *not*
14designed to do any sending of email messages to SMTP (:rfc:`2821`), NNTP, or
15other servers; those are functions of modules such as :mod:`smtplib` and
16:mod:`nntplib`. The :mod:`email` package attempts to be as RFC-compliant as
17possible, supporting in addition to :rfc:`2822`, such MIME-related RFCs as
18:rfc:`2045`, :rfc:`2046`, :rfc:`2047`, and :rfc:`2231`.
Georg Brandl116aa622007-08-15 14:28:22 +000019
20The primary distinguishing feature of the :mod:`email` package is that it splits
21the parsing and generating of email messages from the internal *object model*
22representation of email. Applications using the :mod:`email` package deal
23primarily with objects; you can add sub-objects to messages, remove sub-objects
24from messages, completely re-arrange the contents, etc. There is a separate
25parser and a separate generator which handles the transformation from flat text
26to the object model, and then back to flat text again. There are also handy
27subclasses for some common MIME object types, and a few miscellaneous utilities
28that help with such common tasks as extracting and parsing message field values,
29creating RFC-compliant dates, etc.
30
31The following sections describe the functionality of the :mod:`email` package.
32The ordering follows a progression that should be common in applications: an
33email message is read as flat text from a file or other source, the text is
34parsed to produce the object structure of the email message, this structure is
35manipulated, and finally, the object tree is rendered back into flat text.
36
37It is perfectly feasible to create the object structure out of whole cloth ---
38i.e. completely from scratch. From there, a similar progression can be taken as
39above.
40
41Also included are detailed specifications of all the classes and modules that
42the :mod:`email` package provides, the exception classes you might encounter
43while using the :mod:`email` package, some auxiliary utilities, and a few
44examples. For users of the older :mod:`mimelib` package, or previous versions
45of the :mod:`email` package, a section on differences and porting is provided.
46
47Contents of the :mod:`email` package documentation:
48
49.. toctree::
50
51 email.message.rst
52 email.parser.rst
53 email.generator.rst
Georg Brandle8d2d2d2011-04-19 09:21:00 +020054 email.policy.rst
Georg Brandl116aa622007-08-15 14:28:22 +000055 email.mime.rst
56 email.header.rst
57 email.charset.rst
58 email.encoders.rst
59 email.errors.rst
60 email.util.rst
61 email.iterators.rst
62 email-examples.rst
63
64
65.. seealso::
66
67 Module :mod:`smtplib`
68 SMTP protocol client
69
70 Module :mod:`nntplib`
71 NNTP protocol client
72
73
74.. _email-pkg-history:
75
76Package History
77---------------
78
79This table describes the release history of the email package, corresponding to
80the version of Python that the package was released with. For purposes of this
81document, when you see a note about change or added versions, these refer to the
82Python version the change was made in, *not* the email package version. This
83table also describes the Python compatibility of each version of the package.
84
85+---------------+------------------------------+-----------------------+
86| email version | distributed with | compatible with |
87+===============+==============================+=======================+
88| :const:`1.x` | Python 2.2.0 to Python 2.2.1 | *no longer supported* |
89+---------------+------------------------------+-----------------------+
90| :const:`2.5` | Python 2.2.2+ and Python 2.3 | Python 2.1 to 2.5 |
91+---------------+------------------------------+-----------------------+
92| :const:`3.0` | Python 2.4 | Python 2.3 to 2.5 |
93+---------------+------------------------------+-----------------------+
94| :const:`4.0` | Python 2.5 | Python 2.3 to 2.5 |
95+---------------+------------------------------+-----------------------+
R. David Murray96fd54e2010-10-08 15:55:28 +000096| :const:`5.0` | Python 3.0 and Python 3.1 | Python 3.0 to 3.2 |
97+---------------+------------------------------+-----------------------+
98| :const:`5.1` | Python 3.2 | Python 3.0 to 3.2 |
99+---------------+------------------------------+-----------------------+
100
101Here are the major differences between :mod:`email` version 5.1 and
102version 5.0:
103
104* It is once again possible to parse messages containing non-ASCII bytes,
105 and to reproduce such messages if the data containing the non-ASCII
106 bytes is not modified.
107
108* New functions :func:`message_from_bytes` and :func:`message_from_binary_file`,
109 and new classes :class:`~email.parser.BytesFeedParser` and
110 :class:`~email.parser.BytesParser` allow binary message data to be parsed
111 into model objects.
112
113* Given bytes input to the model, :meth:`~email.message.Message.get_payload`
114 will by default decode a message body that has a
Senthil Kumaran916bd382010-10-15 12:55:19 +0000115 :mailheader:`Content-Transfer-Encoding` of ``8bit`` using the charset
116 specified in the MIME headers and return the resulting string.
R. David Murray96fd54e2010-10-08 15:55:28 +0000117
118* Given bytes input to the model, :class:`~email.generator.Generator` will
119 convert message bodies that have a :mailheader:`Content-Transfer-Encoding` of
120 8bit to instead have a 7bit Content-Transfer-Encoding.
121
R. David Murray7c0a2272010-10-08 21:37:39 +0000122* New class :class:`~email.generator.BytesGenerator` produces bytes
R. David Murray96fd54e2010-10-08 15:55:28 +0000123 as output, preserving any unchanged non-ASCII data that was
124 present in the input used to build the model, including message bodies
125 with a :mailheader:`Content-Transfer-Encoding` of 8bit.
126
127Here are the major differences between :mod:`email` version 5.0 and version 4:
128
129* All operations are on unicode strings. Text inputs must be strings,
130 text outputs are strings. Outputs are limited to the ASCII character
131 set and so can be encoded to ASCII for transmission. Inputs are also
132 limited to ASCII; this is an acknowledged limitation of email 5.0 and
133 means it can only be used to parse email that is 7bit clean.
Georg Brandl116aa622007-08-15 14:28:22 +0000134
135Here are the major differences between :mod:`email` version 4 and version 3:
136
137* All modules have been renamed according to :pep:`8` standards. For example,
138 the version 3 module :mod:`email.Message` was renamed to :mod:`email.message` in
139 version 4.
140
141* A new subpackage :mod:`email.mime` was added and all the version 3
142 :mod:`email.MIME\*` modules were renamed and situated into the :mod:`email.mime`
143 subpackage. For example, the version 3 module :mod:`email.MIMEText` was renamed
144 to :mod:`email.mime.text`.
145
146 *Note that the version 3 names will continue to work until Python 2.6*.
147
148* The :mod:`email.mime.application` module was added, which contains the
149 :class:`MIMEApplication` class.
150
151* Methods that were deprecated in version 3 have been removed. These include
152 :meth:`Generator.__call__`, :meth:`Message.get_type`,
153 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`.
154
155* Fixes have been added for :rfc:`2231` support which can change some of the
156 return types for :func:`Message.get_param` and friends. Under some
157 circumstances, values which used to return a 3-tuple now return simple strings
158 (specifically, if all extended parameter segments were unencoded, there is no
159 language and charset designation expected, so the return type is now a simple
160 string). Also, %-decoding used to be done for both encoded and unencoded
161 segments; this decoding is now done only for encoded segments.
162
163Here are the major differences between :mod:`email` version 3 and version 2:
164
165* The :class:`FeedParser` class was introduced, and the :class:`Parser` class
166 was implemented in terms of the :class:`FeedParser`. All parsing therefore is
167 non-strict, and parsing will make a best effort never to raise an exception.
168 Problems found while parsing messages are stored in the message's *defect*
169 attribute.
170
171* All aspects of the API which raised :exc:`DeprecationWarning`\ s in version 2
172 have been removed. These include the *_encoder* argument to the
173 :class:`MIMEText` constructor, the :meth:`Message.add_payload` method, the
174 :func:`Utils.dump_address_pair` function, and the functions :func:`Utils.decode`
175 and :func:`Utils.encode`.
176
177* New :exc:`DeprecationWarning`\ s have been added to:
178 :meth:`Generator.__call__`, :meth:`Message.get_type`,
179 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`, and the *strict*
180 argument to the :class:`Parser` class. These are expected to be removed in
181 future versions.
182
183* Support for Pythons earlier than 2.3 has been removed.
184
185Here are the differences between :mod:`email` version 2 and version 1:
186
187* The :mod:`email.Header` and :mod:`email.Charset` modules have been added.
188
189* The pickle format for :class:`Message` instances has changed. Since this was
190 never (and still isn't) formally defined, this isn't considered a backward
191 incompatibility. However if your application pickles and unpickles
192 :class:`Message` instances, be aware that in :mod:`email` version 2,
193 :class:`Message` instances now have private variables *_charset* and
194 *_default_type*.
195
196* Several methods in the :class:`Message` class have been deprecated, or their
197 signatures changed. Also, many new methods have been added. See the
198 documentation for the :class:`Message` class for details. The changes should be
199 completely backward compatible.
200
201* The object structure has changed in the face of :mimetype:`message/rfc822`
202 content types. In :mod:`email` version 1, such a type would be represented by a
203 scalar payload, i.e. the container message's :meth:`is_multipart` returned
204 false, :meth:`get_payload` was not a list object, but a single :class:`Message`
205 instance.
206
207 This structure was inconsistent with the rest of the package, so the object
208 representation for :mimetype:`message/rfc822` content types was changed. In
209 :mod:`email` version 2, the container *does* return ``True`` from
210 :meth:`is_multipart`, and :meth:`get_payload` returns a list containing a single
211 :class:`Message` item.
212
213 Note that this is one place that backward compatibility could not be completely
214 maintained. However, if you're already testing the return type of
215 :meth:`get_payload`, you should be fine. You just need to make sure your code
216 doesn't do a :meth:`set_payload` with a :class:`Message` instance on a container
217 with a content type of :mimetype:`message/rfc822`.
218
219* The :class:`Parser` constructor's *strict* argument was added, and its
220 :meth:`parse` and :meth:`parsestr` methods grew a *headersonly* argument. The
221 *strict* flag was also added to functions :func:`email.message_from_file` and
222 :func:`email.message_from_string`.
223
224* :meth:`Generator.__call__` is deprecated; use :meth:`Generator.flatten`
225 instead. The :class:`Generator` class has also grown the :meth:`clone` method.
226
227* The :class:`DecodedGenerator` class in the :mod:`email.Generator` module was
228 added.
229
230* The intermediate base classes :class:`MIMENonMultipart` and
231 :class:`MIMEMultipart` have been added, and interposed in the class hierarchy
232 for most of the other MIME-related derived classes.
233
234* The *_encoder* argument to the :class:`MIMEText` constructor has been
235 deprecated. Encoding now happens implicitly based on the *_charset* argument.
236
237* The following functions in the :mod:`email.Utils` module have been deprecated:
238 :func:`dump_address_pairs`, :func:`decode`, and :func:`encode`. The following
239 functions have been added to the module: :func:`make_msgid`,
240 :func:`decode_rfc2231`, :func:`encode_rfc2231`, and :func:`decode_params`.
241
242* The non-public function :func:`email.Iterators._structure` was added.
243
244
245Differences from :mod:`mimelib`
246-------------------------------
247
248The :mod:`email` package was originally prototyped as a separate library called
249`mimelib <http://mimelib.sf.net/>`_. Changes have been made so that method names
250are more consistent, and some methods or modules have either been added or
251removed. The semantics of some of the methods have also changed. For the most
252part, any functionality available in :mod:`mimelib` is still available in the
253:mod:`email` package, albeit often in a different way. Backward compatibility
254between the :mod:`mimelib` package and the :mod:`email` package was not a
255priority.
256
257Here is a brief description of the differences between the :mod:`mimelib` and
258the :mod:`email` packages, along with hints on how to port your applications.
259
260Of course, the most visible difference between the two packages is that the
261package name has been changed to :mod:`email`. In addition, the top-level
262package has the following differences:
263
264* :func:`messageFromString` has been renamed to :func:`message_from_string`.
265
266* :func:`messageFromFile` has been renamed to :func:`message_from_file`.
267
268The :class:`Message` class has the following differences:
269
270* The method :meth:`asString` was renamed to :meth:`as_string`.
271
272* The method :meth:`ismultipart` was renamed to :meth:`is_multipart`.
273
274* The :meth:`get_payload` method has grown a *decode* optional argument.
275
276* The method :meth:`getall` was renamed to :meth:`get_all`.
277
278* The method :meth:`addheader` was renamed to :meth:`add_header`.
279
280* The method :meth:`gettype` was renamed to :meth:`get_type`.
281
282* The method :meth:`getmaintype` was renamed to :meth:`get_main_type`.
283
284* The method :meth:`getsubtype` was renamed to :meth:`get_subtype`.
285
286* The method :meth:`getparams` was renamed to :meth:`get_params`. Also, whereas
287 :meth:`getparams` returned a list of strings, :meth:`get_params` returns a list
288 of 2-tuples, effectively the key/value pairs of the parameters, split on the
289 ``'='`` sign.
290
291* The method :meth:`getparam` was renamed to :meth:`get_param`.
292
293* The method :meth:`getcharsets` was renamed to :meth:`get_charsets`.
294
295* The method :meth:`getfilename` was renamed to :meth:`get_filename`.
296
297* The method :meth:`getboundary` was renamed to :meth:`get_boundary`.
298
299* The method :meth:`setboundary` was renamed to :meth:`set_boundary`.
300
301* The method :meth:`getdecodedpayload` was removed. To get similar
302 functionality, pass the value 1 to the *decode* flag of the get_payload()
303 method.
304
305* The method :meth:`getpayloadastext` was removed. Similar functionality is
306 supported by the :class:`DecodedGenerator` class in the :mod:`email.generator`
307 module.
308
309* The method :meth:`getbodyastext` was removed. You can get similar
310 functionality by creating an iterator with :func:`typed_subpart_iterator` in the
311 :mod:`email.iterators` module.
312
313The :class:`Parser` class has no differences in its public interface. It does
314have some additional smarts to recognize :mimetype:`message/delivery-status`
315type messages, which it represents as a :class:`Message` instance containing
316separate :class:`Message` subparts for each header block in the delivery status
317notification [#]_.
318
319The :class:`Generator` class has no differences in its public interface. There
320is a new class in the :mod:`email.generator` module though, called
321:class:`DecodedGenerator` which provides most of the functionality previously
322available in the :meth:`Message.getpayloadastext` method.
323
324The following modules and classes have been changed:
325
326* The :class:`MIMEBase` class constructor arguments *_major* and *_minor* have
327 changed to *_maintype* and *_subtype* respectively.
328
329* The ``Image`` class/module has been renamed to ``MIMEImage``. The *_minor*
330 argument has been renamed to *_subtype*.
331
332* The ``Text`` class/module has been renamed to ``MIMEText``. The *_minor*
333 argument has been renamed to *_subtype*.
334
335* The ``MessageRFC822`` class/module has been renamed to ``MIMEMessage``. Note
336 that an earlier version of :mod:`mimelib` called this class/module ``RFC822``,
337 but that clashed with the Python standard library module :mod:`rfc822` on some
338 case-insensitive file systems.
339
340 Also, the :class:`MIMEMessage` class now represents any kind of MIME message
341 with main type :mimetype:`message`. It takes an optional argument *_subtype*
342 which is used to set the MIME subtype. *_subtype* defaults to
343 :mimetype:`rfc822`.
344
345:mod:`mimelib` provided some utility functions in its :mod:`address` and
346:mod:`date` modules. All of these functions have been moved to the
347:mod:`email.utils` module.
348
349The ``MsgReader`` class/module has been removed. Its functionality is most
350closely supported in the :func:`body_line_iterator` function in the
351:mod:`email.iterators` module.
352
353.. rubric:: Footnotes
354
355.. [#] Delivery Status Notifications (DSN) are defined in :rfc:`1894`.