gpt4 book ai didi

python - 在 Python 中使用非 ASCII 字符编码邮件主题 (SMTP)

转载 作者:IT老高 更新时间:2023-10-28 20:59:01 30 4
gpt4 key购买 nike

我使用 Python 模块 MimeWriter 构造消息和 smtplib 发送邮件构造消息是:

file msg.txt:
-----------------------
Content-Type: multipart/mixed;
from: me<me@abc.com>
to: me@abc.com
subject: 主題

Content-Type: text/plain;charset=utf-8

主題

我使用下面的代码发送邮件:

import smtplib
s=smtplib.SMTP('smtp.abc.com')
toList = ['me@abc.com']
f=open('msg.txt') #above msg in msg.txt file
msg=f.read()
f.close()
s.sendmail('me@abc.com',toList,msg)

我的邮件正文正确,但主题不正确,

subject: some junk characters

主題 <- body is correct.

请建议?有没有办法指定用于主题的解码,为 body 指定。如何正确解码主题?

最佳答案

来自 http://docs.python.org/library/email.header.html

from email.message import Message
from email.header import Header
msg = Message()
msg['Subject'] = Header('主題', 'utf-8')
print msg.as_string()

Subject: =?utf-8?b?5Li76aGM?=

更简单:

from email.header import Header
print Header('主題', 'utf-8').encode()

=?utf-8?b?5Li76aGM?=

关于python - 在 Python 中使用非 ASCII 字符编码邮件主题 (SMTP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6913170/

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