我正在使用 python 2.7.3。我有以下代码用于发送带有附件的电子邮件。
# coding: cp1251
import os
import smtplib
from email import Encoders
from email.MIMEBase import MIMEBase
from email.MIMEMultipart import MIMEMultipart
from email.Utils import formatdate
def sendEmail(to_address, mail_settings, attachment_file_path, subject = 'my_subject'):
HOST = mail_settings['host']
port = mail_settings['port']
username = mail_settings['login']
password = mail_settings['pass']
msg = MIMEMultipart()
msg["From"] = mail_settings['from_address']
msg["To"] = ','.join(to_address)
msg["Subject"] = subject.decode('cp1251')
msg['Date'] = formatdate(localtime=True)
msg['Content-Type'] = "text/html; charset=cp1251"
# attach a file
part = MIMEBase('application', "octet-stream")
part.set_payload( open(attachment_file_path,"rb").read() )
Encoders.encode_base64(part)
part.add_header('Content-Disposition', 'attachment; filename="%s"' % os.path.basename(attachment_file_path))
msg.attach(part)
server = smtplib.SMTP(host=HOST, port=port)
try:
failed = server.sendmail(mail_settings['from_address'], to_address, msg.as_string())
print('sent')
server.close()
except Exception, e:
errorMsg = "Unable to send email. Error: %s" % str(e)
print(errorMsg)
我的问题是,通过此代码接收电子邮件的交换用户如果有俄文字母(例如 пример.txt),则看不到附件文件名,否则如果它有英文字母,则一切正常。我只有使用 Exchange 的客户才会遇到这个问题(gmail 工作正常)。我做错了什么?我应该在哪里更改编码?