blob: e8bb02bff524dd76e92cf47fb87694fbd9dfaf64 [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.
Terry Jan Reedyfa089b92016-06-11 15:02:54 -04007
Georg Brandl116aa622007-08-15 14:28:22 +00008.. moduleauthor:: Barry A. Warsaw <barry@python.org>
9.. sectionauthor:: Barry A. Warsaw <barry@python.org>
R. David Murray96fd54e2010-10-08 15:55:28 +000010.. Copyright (C) 2001-2010 Python Software Foundation
Georg Brandl116aa622007-08-15 14:28:22 +000011
Terry Jan Reedyfa089b92016-06-11 15:02:54 -040012**Source code:** :source:`Lib/email/__init__.py`
13
14--------------
Georg Brandl116aa622007-08-15 14:28:22 +000015
Georg Brandl116aa622007-08-15 14:28:22 +000016The :mod:`email` package is a library for managing email messages, including
Georg Brandl83e9f4c2008-06-12 18:52:31 +000017MIME and other :rfc:`2822`\ -based message documents. It is specifically *not*
18designed to do any sending of email messages to SMTP (:rfc:`2821`), NNTP, or
19other servers; those are functions of modules such as :mod:`smtplib` and
20:mod:`nntplib`. The :mod:`email` package attempts to be as RFC-compliant as
21possible, supporting in addition to :rfc:`2822`, such MIME-related RFCs as
22:rfc:`2045`, :rfc:`2046`, :rfc:`2047`, and :rfc:`2231`.
Georg Brandl116aa622007-08-15 14:28:22 +000023
24The primary distinguishing feature of the :mod:`email` package is that it splits
25the parsing and generating of email messages from the internal *object model*
26representation of email. Applications using the :mod:`email` package deal
27primarily with objects; you can add sub-objects to messages, remove sub-objects
28from messages, completely re-arrange the contents, etc. There is a separate
29parser and a separate generator which handles the transformation from flat text
30to the object model, and then back to flat text again. There are also handy
31subclasses for some common MIME object types, and a few miscellaneous utilities
32that help with such common tasks as extracting and parsing message field values,
33creating RFC-compliant dates, etc.
34
35The following sections describe the functionality of the :mod:`email` package.
36The ordering follows a progression that should be common in applications: an
37email message is read as flat text from a file or other source, the text is
38parsed to produce the object structure of the email message, this structure is
39manipulated, and finally, the object tree is rendered back into flat text.
40
41It is perfectly feasible to create the object structure out of whole cloth ---
42i.e. completely from scratch. From there, a similar progression can be taken as
43above.
44
45Also included are detailed specifications of all the classes and modules that
46the :mod:`email` package provides, the exception classes you might encounter
47while using the :mod:`email` package, some auxiliary utilities, and a few
48examples. For users of the older :mod:`mimelib` package, or previous versions
49of the :mod:`email` package, a section on differences and porting is provided.
50
51Contents of the :mod:`email` package documentation:
52
53.. toctree::
54
55 email.message.rst
56 email.parser.rst
57 email.generator.rst
Georg Brandle8d2d2d2011-04-19 09:21:00 +020058 email.policy.rst
R David Murray79cf3ba2012-05-27 17:10:36 -040059 email.headerregistry.rst
R David Murray3da240f2013-10-16 22:48:40 -040060 email.contentmanager.rst
Georg Brandl116aa622007-08-15 14:28:22 +000061 email.mime.rst
62 email.header.rst
63 email.charset.rst
64 email.encoders.rst
65 email.errors.rst
66 email.util.rst
67 email.iterators.rst
68 email-examples.rst
69
70
71.. seealso::
72
73 Module :mod:`smtplib`
74 SMTP protocol client
75
76 Module :mod:`nntplib`
77 NNTP protocol client
78
79
80.. _email-pkg-history:
81
82Package History
83---------------
84
85This table describes the release history of the email package, corresponding to
86the version of Python that the package was released with. For purposes of this
87document, when you see a note about change or added versions, these refer to the
88Python version the change was made in, *not* the email package version. This
89table also describes the Python compatibility of each version of the package.
90
91+---------------+------------------------------+-----------------------+
92| email version | distributed with | compatible with |
93+===============+==============================+=======================+
94| :const:`1.x` | Python 2.2.0 to Python 2.2.1 | *no longer supported* |
95+---------------+------------------------------+-----------------------+
96| :const:`2.5` | Python 2.2.2+ and Python 2.3 | Python 2.1 to 2.5 |
97+---------------+------------------------------+-----------------------+
R David Murray1f3a88f2014-09-27 14:59:36 -040098| :const:`3.0` | Python 2.4 and Python 2.5 | Python 2.3 to 2.6 |
Georg Brandl116aa622007-08-15 14:28:22 +000099+---------------+------------------------------+-----------------------+
R David Murray1f3a88f2014-09-27 14:59:36 -0400100| :const:`4.0` | Python 2.5 to Python 2.7 | Python 2.3 to 2.7 |
Georg Brandl116aa622007-08-15 14:28:22 +0000101+---------------+------------------------------+-----------------------+
R. David Murray96fd54e2010-10-08 15:55:28 +0000102| :const:`5.0` | Python 3.0 and Python 3.1 | Python 3.0 to 3.2 |
103+---------------+------------------------------+-----------------------+
R David Murray1f3a88f2014-09-27 14:59:36 -0400104| :const:`5.1` | Python 3.2 | Python 3.2 |
R. David Murray96fd54e2010-10-08 15:55:28 +0000105+---------------+------------------------------+-----------------------+
106
R David Murray1f3a88f2014-09-27 14:59:36 -0400107After Version 5.1 (Python 3.2), the email package no longer has a version that
108is separate from the Python version. (See the :ref:`whatsnew-index` documents
109for the respective Python versions for details on changes.)
110
R. David Murray96fd54e2010-10-08 15:55:28 +0000111Here are the major differences between :mod:`email` version 5.1 and
112version 5.0:
113
114* It is once again possible to parse messages containing non-ASCII bytes,
115 and to reproduce such messages if the data containing the non-ASCII
116 bytes is not modified.
117
118* New functions :func:`message_from_bytes` and :func:`message_from_binary_file`,
119 and new classes :class:`~email.parser.BytesFeedParser` and
120 :class:`~email.parser.BytesParser` allow binary message data to be parsed
121 into model objects.
122
123* Given bytes input to the model, :meth:`~email.message.Message.get_payload`
124 will by default decode a message body that has a
Senthil Kumaran916bd382010-10-15 12:55:19 +0000125 :mailheader:`Content-Transfer-Encoding` of ``8bit`` using the charset
126 specified in the MIME headers and return the resulting string.
R. David Murray96fd54e2010-10-08 15:55:28 +0000127
128* Given bytes input to the model, :class:`~email.generator.Generator` will
129 convert message bodies that have a :mailheader:`Content-Transfer-Encoding` of
130 8bit to instead have a 7bit Content-Transfer-Encoding.
131
R. David Murray7c0a2272010-10-08 21:37:39 +0000132* New class :class:`~email.generator.BytesGenerator` produces bytes
R. David Murray96fd54e2010-10-08 15:55:28 +0000133 as output, preserving any unchanged non-ASCII data that was
134 present in the input used to build the model, including message bodies
135 with a :mailheader:`Content-Transfer-Encoding` of 8bit.
136
137Here are the major differences between :mod:`email` version 5.0 and version 4:
138
139* All operations are on unicode strings. Text inputs must be strings,
140 text outputs are strings. Outputs are limited to the ASCII character
141 set and so can be encoded to ASCII for transmission. Inputs are also
142 limited to ASCII; this is an acknowledged limitation of email 5.0 and
143 means it can only be used to parse email that is 7bit clean.
Georg Brandl116aa622007-08-15 14:28:22 +0000144
145Here are the major differences between :mod:`email` version 4 and version 3:
146
147* All modules have been renamed according to :pep:`8` standards. For example,
148 the version 3 module :mod:`email.Message` was renamed to :mod:`email.message` in
149 version 4.
150
151* A new subpackage :mod:`email.mime` was added and all the version 3
152 :mod:`email.MIME\*` modules were renamed and situated into the :mod:`email.mime`
153 subpackage. For example, the version 3 module :mod:`email.MIMEText` was renamed
154 to :mod:`email.mime.text`.
155
156 *Note that the version 3 names will continue to work until Python 2.6*.
157
158* The :mod:`email.mime.application` module was added, which contains the
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300159 :class:`~email.mime.application.MIMEApplication` class.
Georg Brandl116aa622007-08-15 14:28:22 +0000160
161* Methods that were deprecated in version 3 have been removed. These include
162 :meth:`Generator.__call__`, :meth:`Message.get_type`,
163 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`.
164
165* Fixes have been added for :rfc:`2231` support which can change some of the
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300166 return types for :func:`Message.get_param <email.message.Message.get_param>`
167 and friends. Under some
Georg Brandl116aa622007-08-15 14:28:22 +0000168 circumstances, values which used to return a 3-tuple now return simple strings
169 (specifically, if all extended parameter segments were unencoded, there is no
170 language and charset designation expected, so the return type is now a simple
171 string). Also, %-decoding used to be done for both encoded and unencoded
172 segments; this decoding is now done only for encoded segments.
173
174Here are the major differences between :mod:`email` version 3 and version 2:
175
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300176* The :class:`~email.parser.FeedParser` class was introduced, and the
177 :class:`~email.parser.Parser` class was implemented in terms of the
178 :class:`~email.parser.FeedParser`. All parsing therefore is
Georg Brandl116aa622007-08-15 14:28:22 +0000179 non-strict, and parsing will make a best effort never to raise an exception.
180 Problems found while parsing messages are stored in the message's *defect*
181 attribute.
182
183* All aspects of the API which raised :exc:`DeprecationWarning`\ s in version 2
184 have been removed. These include the *_encoder* argument to the
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300185 :class:`~email.mime.text.MIMEText` constructor, the
186 :meth:`Message.add_payload` method, the :func:`Utils.dump_address_pair`
187 function, and the functions :func:`Utils.decode` and :func:`Utils.encode`.
Georg Brandl116aa622007-08-15 14:28:22 +0000188
189* New :exc:`DeprecationWarning`\ s have been added to:
190 :meth:`Generator.__call__`, :meth:`Message.get_type`,
191 :meth:`Message.get_main_type`, :meth:`Message.get_subtype`, and the *strict*
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300192 argument to the :class:`~email.parser.Parser` class. These are expected to
193 be removed in future versions.
Georg Brandl116aa622007-08-15 14:28:22 +0000194
195* Support for Pythons earlier than 2.3 has been removed.
196
197Here are the differences between :mod:`email` version 2 and version 1:
198
199* The :mod:`email.Header` and :mod:`email.Charset` modules have been added.
200
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300201* The pickle format for :class:`~email.message.Message` instances has changed.
202 Since this was never (and still isn't) formally defined, this isn't
203 considered a backward incompatibility. However if your application pickles
204 and unpickles :class:`~email.message.Message` instances, be aware that in
205 :mod:`email` version 2, :class:`~email.message.Message` instances now have
206 private variables *_charset* and *_default_type*.
Georg Brandl116aa622007-08-15 14:28:22 +0000207
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300208* Several methods in the :class:`~email.message.Message` class have been
209 deprecated, or their signatures changed. Also, many new methods have been
210 added. See the documentation for the :class:`~email.message.Message` class
211 for details. The changes should be completely backward compatible.
Georg Brandl116aa622007-08-15 14:28:22 +0000212
213* The object structure has changed in the face of :mimetype:`message/rfc822`
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300214 content types. In :mod:`email` version 1, such a type would be represented
215 by a scalar payload, i.e. the container message's
216 :meth:`~email.message.Message.is_multipart` returned false,
217 :meth:`~email.message.Message.get_payload` was not a list object, but a
218 single :class:`~email.message.Message` instance.
Georg Brandl116aa622007-08-15 14:28:22 +0000219
220 This structure was inconsistent with the rest of the package, so the object
221 representation for :mimetype:`message/rfc822` content types was changed. In
222 :mod:`email` version 2, the container *does* return ``True`` from
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300223 :meth:`~email.message.Message.is_multipart`, and
224 :meth:`~email.message.Message.get_payload` returns a list containing a single
225 :class:`~email.message.Message` item.
Georg Brandl116aa622007-08-15 14:28:22 +0000226
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300227 Note that this is one place that backward compatibility could not be
228 completely maintained. However, if you're already testing the return type of
229 :meth:`~email.message.Message.get_payload`, you should be fine. You just need
230 to make sure your code doesn't do a :meth:`~email.message.Message.set_payload`
231 with a :class:`~email.message.Message` instance on a container with a content
232 type of :mimetype:`message/rfc822`.
Georg Brandl116aa622007-08-15 14:28:22 +0000233
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300234* The :class:`~email.parser.Parser` constructor's *strict* argument was added,
235 and its :meth:`~email.parser.Parser.parse` and
236 :meth:`~email.parser.Parser.parsestr` methods grew a *headersonly* argument.
237 The *strict* flag was also added to functions :func:`email.message_from_file`
238 and :func:`email.message_from_string`.
Georg Brandl116aa622007-08-15 14:28:22 +0000239
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300240* :meth:`Generator.__call__` is deprecated; use :meth:`Generator.flatten
241 <email.generator.Generator.flatten>` instead. The
242 :class:`~email.generator.Generator` class has also grown the
243 :meth:`~email.generator.Generator.clone` method.
Georg Brandl116aa622007-08-15 14:28:22 +0000244
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300245* The :class:`~email.generator.DecodedGenerator` class in the
246 :mod:`email.generator` module was added.
Georg Brandl116aa622007-08-15 14:28:22 +0000247
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300248* The intermediate base classes
249 :class:`~email.mime.nonmultipart.MIMENonMultipart` and
250 :class:`~email.mime.multipart.MIMEMultipart` have been added, and interposed
251 in the class hierarchy for most of the other MIME-related derived classes.
Georg Brandl116aa622007-08-15 14:28:22 +0000252
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300253* The *_encoder* argument to the :class:`~email.mime.text.MIMEText` constructor
254 has been deprecated. Encoding now happens implicitly based on the
255 *_charset* argument.
Georg Brandl116aa622007-08-15 14:28:22 +0000256
257* The following functions in the :mod:`email.Utils` module have been deprecated:
258 :func:`dump_address_pairs`, :func:`decode`, and :func:`encode`. The following
259 functions have been added to the module: :func:`make_msgid`,
260 :func:`decode_rfc2231`, :func:`encode_rfc2231`, and :func:`decode_params`.
261
262* The non-public function :func:`email.Iterators._structure` was added.
263
264
265Differences from :mod:`mimelib`
266-------------------------------
267
268The :mod:`email` package was originally prototyped as a separate library called
Georg Brandlb7354a62014-10-29 10:57:37 +0100269`mimelib <http://mimelib.sourceforge.net/>`_. Changes have been made so that method names
Georg Brandl116aa622007-08-15 14:28:22 +0000270are more consistent, and some methods or modules have either been added or
271removed. The semantics of some of the methods have also changed. For the most
272part, any functionality available in :mod:`mimelib` is still available in the
273:mod:`email` package, albeit often in a different way. Backward compatibility
274between the :mod:`mimelib` package and the :mod:`email` package was not a
275priority.
276
277Here is a brief description of the differences between the :mod:`mimelib` and
278the :mod:`email` packages, along with hints on how to port your applications.
279
280Of course, the most visible difference between the two packages is that the
281package name has been changed to :mod:`email`. In addition, the top-level
282package has the following differences:
283
284* :func:`messageFromString` has been renamed to :func:`message_from_string`.
285
286* :func:`messageFromFile` has been renamed to :func:`message_from_file`.
287
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300288The :class:`~email.message.Message` class has the following differences:
Georg Brandl116aa622007-08-15 14:28:22 +0000289
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300290* The method :meth:`asString` was renamed to
291 :meth:`~email.message.Message.as_string`.
Georg Brandl116aa622007-08-15 14:28:22 +0000292
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300293* The method :meth:`ismultipart` was renamed to
294 :meth:`~email.message.Message.is_multipart`.
Georg Brandl116aa622007-08-15 14:28:22 +0000295
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300296* The :meth:`~email.message.Message.get_payload` method has grown a *decode*
297 optional argument.
Georg Brandl116aa622007-08-15 14:28:22 +0000298
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300299* The method :meth:`getall` was renamed to
300 :meth:`~email.message.Message.get_all`.
Georg Brandl116aa622007-08-15 14:28:22 +0000301
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300302* The method :meth:`addheader` was renamed to
303 :meth:`~email.message.Message.add_header`.
Georg Brandl116aa622007-08-15 14:28:22 +0000304
305* The method :meth:`gettype` was renamed to :meth:`get_type`.
306
307* The method :meth:`getmaintype` was renamed to :meth:`get_main_type`.
308
309* The method :meth:`getsubtype` was renamed to :meth:`get_subtype`.
310
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300311* The method :meth:`getparams` was renamed to
312 :meth:`~email.message.Message.get_params`. Also, whereas :meth:`getparams`
313 returned a list of strings, :meth:`~email.message.Message.get_params` returns
314 a list of 2-tuples, effectively the key/value pairs of the parameters, split
315 on the ``'='`` sign.
Georg Brandl116aa622007-08-15 14:28:22 +0000316
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300317* The method :meth:`getparam` was renamed to
318 :meth:`~email.message.Message.get_param`.
Georg Brandl116aa622007-08-15 14:28:22 +0000319
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300320* The method :meth:`getcharsets` was renamed to
321 :meth:`~email.message.Message.get_charsets`.
Georg Brandl116aa622007-08-15 14:28:22 +0000322
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300323* The method :meth:`getfilename` was renamed to
324 :meth:`~email.message.Message.get_filename`.
Georg Brandl116aa622007-08-15 14:28:22 +0000325
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300326* The method :meth:`getboundary` was renamed to
327 :meth:`~email.message.Message.get_boundary`.
Georg Brandl116aa622007-08-15 14:28:22 +0000328
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300329* The method :meth:`setboundary` was renamed to
330 :meth:`~email.message.Message.set_boundary`.
Georg Brandl116aa622007-08-15 14:28:22 +0000331
332* The method :meth:`getdecodedpayload` was removed. To get similar
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300333 functionality, pass the value 1 to the *decode* flag of the
334 :meth:`~email.message.Message.get_payload` method.
Georg Brandl116aa622007-08-15 14:28:22 +0000335
336* The method :meth:`getpayloadastext` was removed. Similar functionality is
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300337 supported by the :class:`~email.generator.DecodedGenerator` class in the
338 :mod:`email.generator` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000339
340* The method :meth:`getbodyastext` was removed. You can get similar
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300341 functionality by creating an iterator with
342 :func:`~email.iterators.typed_subpart_iterator` in the :mod:`email.iterators`
343 module.
Georg Brandl116aa622007-08-15 14:28:22 +0000344
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300345The :class:`~email.parser.Parser` class has no differences in its public
346interface. It does have some additional smarts to recognize
347:mimetype:`message/delivery-status` type messages, which it represents as a
348:class:`~email.message.Message` instance containing separate
349:class:`~email.message.Message` subparts for each header block in the delivery
350status notification [#]_.
Georg Brandl116aa622007-08-15 14:28:22 +0000351
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300352The :class:`~email.generator.Generator` class has no differences in its public
353interface. There is a new class in the :mod:`email.generator` module though,
354called :class:`~email.generator.DecodedGenerator` which provides most of the
355functionality previously available in the :meth:`Message.getpayloadastext`
356method.
Georg Brandl116aa622007-08-15 14:28:22 +0000357
358The following modules and classes have been changed:
359
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300360* The :class:`~email.mime.base.MIMEBase` class constructor arguments *_major*
361 and *_minor* have changed to *_maintype* and *_subtype* respectively.
Georg Brandl116aa622007-08-15 14:28:22 +0000362
363* The ``Image`` class/module has been renamed to ``MIMEImage``. The *_minor*
364 argument has been renamed to *_subtype*.
365
366* The ``Text`` class/module has been renamed to ``MIMEText``. The *_minor*
367 argument has been renamed to *_subtype*.
368
369* The ``MessageRFC822`` class/module has been renamed to ``MIMEMessage``. Note
370 that an earlier version of :mod:`mimelib` called this class/module ``RFC822``,
371 but that clashed with the Python standard library module :mod:`rfc822` on some
372 case-insensitive file systems.
373
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300374 Also, the :class:`~email.mime.message.MIMEMessage` class now represents any
375 kind of MIME message
Georg Brandl116aa622007-08-15 14:28:22 +0000376 with main type :mimetype:`message`. It takes an optional argument *_subtype*
377 which is used to set the MIME subtype. *_subtype* defaults to
378 :mimetype:`rfc822`.
379
380:mod:`mimelib` provided some utility functions in its :mod:`address` and
381:mod:`date` modules. All of these functions have been moved to the
382:mod:`email.utils` module.
383
384The ``MsgReader`` class/module has been removed. Its functionality is most
Serhiy Storchakae0f0cf42013-08-19 09:59:18 +0300385closely supported in the :func:`~email.iterators.body_line_iterator` function
386in the :mod:`email.iterators` module.
Georg Brandl116aa622007-08-15 14:28:22 +0000387
388.. rubric:: Footnotes
389
390.. [#] Delivery Status Notifications (DSN) are defined in :rfc:`1894`.