群消息整理“邮件发送,使用域名邮箱无法通过验证”
-
jeff和buke的记录:
假设:
发件人为: [email protected]
而发送账户为:[email protected]
qq 邮箱等会严格校验,发件人和发送账户是否一致
原 message['From'] 值 '[email protected]'
改为 message['From'] = '[email protected] <[email protected]?> ' 即可正常通过校验
修改代码:message.replace_header('From', '%s <%s>' % (message['From'], smtp_user))