Python 支持一个非常实用的 MIME 库,称为email.mime
.
我想要实现的是获得一个包含纯 UTF-8 文本的 MIME 部分,以编码为带引号的可打印文件,而不是 base64。尽管库中提供了所有功能,但我没有设法使用它:
例子:
import email.mime.text, email.encoders
m=email.mime.text.MIMEText(u'This is the text containing ünicöde', _charset='utf-8')
m.as_string()
# => Leads to a base64-encoded message, as base64 is the default.
email.encoders.encode_quopri(m)
m.as_string()
# => Leads to a strange message
最后一条命令导致一条奇怪的消息:
Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: base64
Content-Transfer-Encoding: quoted-printable
GhpcyBpcyB0aGUgdGV4dCBjb250YWluaW5nIMO8bmljw7ZkZQ=3D=3D
这显然没有编码为引用的可打印文件,双transfer-encoding
标头最后很奇怪(如果不是非法的话)。
如何在 mime 消息中将我的文本编码为引用的可打印文件?