2012-05-27 18:10:36 -03:00
|
|
|
:mod:`email.encoders`: Encoders
|
|
|
|
-------------------------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
|
|
|
.. module:: email.encoders
|
|
|
|
:synopsis: Encoders for email message payloads.
|
|
|
|
|
2016-06-11 16:02:54 -03:00
|
|
|
**Source code:** :source:`Lib/email/encoders.py`
|
|
|
|
|
|
|
|
--------------
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2016-09-07 22:15:59 -03:00
|
|
|
This module is part of the legacy (``Compat32``) email API. In the
|
|
|
|
new API the functionality is provided by the *cte* parameter of
|
|
|
|
the :meth:`~email.message.EmailMessage.set_content` method.
|
|
|
|
|
2019-05-31 17:18:41 -03:00
|
|
|
This module is deprecated in Python 3. The functions provided here
|
|
|
|
should not be called explicitly since the :class:`~email.mime.text.MIMEText`
|
|
|
|
class sets the content type and CTE header using the *_subtype* and *_charset*
|
2019-07-30 19:16:13 -03:00
|
|
|
values passed during the instantiation of that class.
|
2019-05-31 17:18:41 -03:00
|
|
|
|
2016-09-07 22:15:59 -03:00
|
|
|
The remaining text in this section is the original documentation of the module.
|
|
|
|
|
2009-04-27 13:46:17 -03:00
|
|
|
When creating :class:`~email.message.Message` objects from scratch, you often
|
|
|
|
need to encode the payloads for transport through compliant mail servers. This
|
|
|
|
is especially true for :mimetype:`image/\*` and :mimetype:`text/\*` type messages
|
|
|
|
containing binary data.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2019-03-28 17:38:30 -03:00
|
|
|
The :mod:`email` package provides some convenient encoders in its
|
2023-07-29 02:48:10 -03:00
|
|
|
:mod:`~email.encoders` module. These encoders are actually used by the
|
2009-04-27 13:46:17 -03:00
|
|
|
:class:`~email.mime.audio.MIMEAudio` and :class:`~email.mime.image.MIMEImage`
|
|
|
|
class constructors to provide default encodings. All encoder functions take
|
|
|
|
exactly one argument, the message object to encode. They usually extract the
|
|
|
|
payload, encode it, and reset the payload to this newly encoded value. They
|
|
|
|
should also set the :mailheader:`Content-Transfer-Encoding` header as appropriate.
|
2007-08-15 11:28:22 -03:00
|
|
|
|
2012-03-16 23:03:17 -03:00
|
|
|
Note that these functions are not meaningful for a multipart message. They
|
2012-03-16 23:10:00 -03:00
|
|
|
must be applied to individual subparts instead, and will raise a
|
2012-03-16 23:03:17 -03:00
|
|
|
:exc:`TypeError` if passed a message whose type is multipart.
|
|
|
|
|
2007-08-15 11:28:22 -03:00
|
|
|
Here are the encoding functions provided:
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: encode_quopri(msg)
|
|
|
|
|
|
|
|
Encodes the payload into quoted-printable form and sets the
|
|
|
|
:mailheader:`Content-Transfer-Encoding` header to ``quoted-printable`` [#]_.
|
|
|
|
This is a good encoding to use when most of your payload is normal printable
|
|
|
|
data, but contains a few unprintable characters.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: encode_base64(msg)
|
|
|
|
|
|
|
|
Encodes the payload into base64 form and sets the
|
|
|
|
:mailheader:`Content-Transfer-Encoding` header to ``base64``. This is a good
|
|
|
|
encoding to use when most of your payload is unprintable data since it is a more
|
|
|
|
compact form than quoted-printable. The drawback of base64 encoding is that it
|
|
|
|
renders the text non-human readable.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: encode_7or8bit(msg)
|
|
|
|
|
|
|
|
This doesn't actually modify the message's payload, but it does set the
|
|
|
|
:mailheader:`Content-Transfer-Encoding` header to either ``7bit`` or ``8bit`` as
|
|
|
|
appropriate, based on the payload data.
|
|
|
|
|
|
|
|
|
|
|
|
.. function:: encode_noop(msg)
|
|
|
|
|
|
|
|
This does nothing; it doesn't even set the
|
|
|
|
:mailheader:`Content-Transfer-Encoding` header.
|
|
|
|
|
|
|
|
.. rubric:: Footnotes
|
|
|
|
|
|
|
|
.. [#] Note that encoding with :meth:`encode_quopri` also encodes all tabs and space
|
|
|
|
characters in the data.
|
|
|
|
|