如何在Python 2.7中使用smtplib在电子邮件中设置字符集?

如何在Python 2.7中使用smtplib在电子邮件中设置字符集?,第1张

如何在Python 2.7中使用smtplib在电子邮件中设置字符集
from email.header import Headerfrom email.mime.multipart import MIMEMultipartfrom email.mime.text import MIMETextdef contains_non_ascii_characters(str):    return not all(ord(c) < 128 for c in str)def add_header(message, header_name, header_value):    if contains_non_ascii_characters(header_value):        h = Header(header_value, 'utf-8')        message[header_name] = h    else:        message[header_name] = header_value        return message............msg = MIMEMultipart('alternative')msg = add_header(msg, 'Subject', subject)if contains_non_ascii_characters(html):    html_text = MIMEText(html.enpre('utf-8'), 'html','utf-8')else:    html_text = MIMEText(html, 'html')if(contains_non_ascii_characters(plain)):    plain_text = MIMEText(plain.enpre('utf-8'),'plain','utf-8') else:    plain_text = MIMEText(plain,'plain')msg.attach(plain_text)msg.attach(html_text)

无论您的文本是否包含非ASCII字符,这都应该为您提供适当的文本和标题编码。这也意味着您不会不必要地自动使用base64编码。



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5617402.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存