smtplib在Python 3.1中使用unicode字符发送邮件的问题

时间:2011-11-30 16:51:53

标签: unicode python-3.x smtplib

你好我的unicode电子邮件有这个问题,当我尝试用西班牙语发送单词时:“Añadir”或其他系统崩溃,我试试这个链接上的内容:Python 3 smtplib send with unicode characters并且没有工作。

这是我的错误代码:

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()

提前致谢。

3 个答案:

答案 0 :(得分:21)

您只需使用:

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

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

答案 1 :(得分:18)

我解决了,解决方法是:

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()

希望这有帮助! 谢谢!

答案 2 :(得分:3)

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

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

因此,要正确编码这些unicode字符,请添加

msg.encode("utf8") 

sendmail命令的末尾。