Pythonは、と呼ばれる非常に機能的なMIMEライブラリemail.mime
をサポートしています。
私が達成したいのは、base64ではなくquotedprintablesとしてエンコードされるプレーンなUTF-8テキストを含むMIMEパーツを取得することです。すべての機能はライブラリで利用できますが、私はそれを使用することができませんでした:
例:
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
これは明らかにquotedprintablesとしてエンコードされておらず、ダブルtransfer-encoding
ヘッダーはついに奇妙になります(違法でない場合)。
mime-messageで引用符で囲まれた印刷可能テキストとしてテキストをエンコードするにはどうすればよいですか?