18

您好,我在使用 unicode 电子邮件时遇到了这个问题,当我尝试用西班牙语发送诸如“Añadir”或其他系统崩溃之类的单词时,我尝试了此链接上所说的内容:Python 3 smtplib send with unicode characters and doesn't工作。

这是我的错误代码:

server.sendmail(frm, to, msg.as_string())
g.flatten(self, unixfrom=unixfrom)
self._write(msg)
self._write_headers(msg)
header_name=h)
self.append(s, charset, errors)
input_bytes = s.encode(input_charset, errors)

UnicodeEncodeError:“ascii”编解码器无法在位置 7 编码字符“\xf1”:序数不在范围内(128)

这是服务器上的代码:

msg = MIMEMultipart('alternative')
frm = "sales@bmsuite.com"
msg['FROM'] = frm

to = "info@bmsuite.com"
msg['To'] = to
msg['Subject'] = "Favor añadir esta empresa a la lista"

_attach = MIMEText("""Nombre:Prueba; Dirección:Calle A #12.""".encode('utf-8'), _charset='utf-8')
msg.attach(_attach)

server.sendmail(frm, to, msg.as_string())

server.quit()

提前致谢。

4

3 回答 3

26

您可以改为使用:

msg = MIMEText(message, _charset="UTF-8")
msg['Subject'] = Header(subject, "utf-8")

但无论哪种方式,如果您的frm = "xxxx@xxxxxx.com"或包含to = "xxxx@xxxxxx.com"unicode 字符,您仍然会遇到问题。你不能在那里使用 Header 。

于 2012-06-19T11:25:03.667 回答
20

我解决了,解决方法是这样的:

import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
from email.header import Header

frm = "xxxx@xxxxxx.com"
msg = MIMEMultipart('alternative')

msg.set_charset('utf8')

msg['FROM'] = frm

bodyStr = ''
to = "xxxx@xxxxxx.com"
#This solved the problem with the encode on the subject.
msg['Subject'] = Header(
    body.getAttribute('subject').encode('utf-8'),
    'UTF-8'
).encode()

msg['To'] = to

# And this on the body
_attach = MIMEText(bodyStr.encode('utf-8'), 'html', 'UTF-8')        

msg.attach(_attach)

server.sendmail(frm, to, msg.as_string())

server.quit()

希望这可以帮助!谢谢!

于 2011-12-01T00:58:10.073 回答
9

我在这里找到了一个非常简单的解决方法(https://bugs.python.org/issue25736):

msg = '''your message with umlauts and characters here : <<|""<<>> ->ÄÄ">ÖÖÄÅ"#¤<%&<€€€'''
server.sendmail(mailfrom, rcptto, msg.encode("utf8"))
server.quit()

因此,要以正确的方式编码这些 un​​icode 字符,请添加

msg.encode("utf8") 

在 sendmail 命令的末尾。

于 2019-09-30T11:07:43.057 回答