gpt4 book ai didi

python - 将 MIMEText 编码为引用的打印品

转载 作者:太空狗 更新时间:2023-10-29 18:02:27 25 4
gpt4 key购买 nike

Python 支持相当实用的 MIME-Library名为 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 header 最后很奇怪(如果不是非法的话)。

如何将我的文本编码为 mime 消息中引用的打印文件?

最佳答案

好吧,我得到了一个非常 hacky 的解决方案,但至少它引导了某个方向:MIMEText 假定 base64,我不知道如何更改它。为此,我使用 MIMENonMultipart:

import email.mime, email.mime.nonmultipart, email.charset
m=email.mime.nonmultipart.MIMENonMultipart('text', 'plain', charset='utf-8')

#Construct a new charset which uses Quoted Printables (base64 is default)
cs=email.charset.Charset('utf-8')
cs.body_encoding = email.charset.QP

#Now set the content using the new charset
m.set_payload(u'This is the text containing ünicöde', charset=cs)

现在消息似乎被正确编码了:

Content-Type: text/plain; charset="utf-8"
MIME-Version: 1.0
Content-Transfer-Encoding: quoted-printable

This is the text containing =C3=BCnic=C3=B6de

甚至可以构造一个隐藏复杂性的新类:

class MIMEUTF8QPText(email.mime.nonmultipart.MIMENonMultipart):
def __init__(self, payload):
email.mime.nonmultipart.MIMENonMultipart.__init__(self, 'text', 'plain',
charset='utf-8')

utf8qp=email.charset.Charset('utf-8')
utf8qp.body_encoding=email.charset.QP

self.set_payload(payload, charset=utf8qp)

然后像这样使用它:

m = MIMEUTF8QPText(u'This is the text containing ünicöde')
m.as_string()

关于python - 将 MIMEText 编码为引用的打印品,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14939018/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com