When creating Message objects from scratch, you often need to
encode the payloads for transport through compliant mail servers.
This is especially true for image/* and text/*
type messages containing binary data.
The email package provides some convenient encodings in its
Encoders module. These encoders are actually used by the
MIMEImage and MIMEText 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 Content-Transfer-Encoding: header as appropriate.
Encodes the payload into Quoted-Printable form and sets the
Content-Transfer-Encoding: header to
quoted-printable12.2.
This is a good encoding to use when most of your payload is normal
printable data, but contains a few unprintable characters.
Encodes the payload into Base64 form and sets the
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.
This doesn't actually modify the message's payload, but it does set
the Content-Transfer-Encoding: header to either 7bit or
8bit as appropriate, based on the payload data.