python smtplib发送多个email联系人
使用python下的stmpmail 模块,可以实现邮件的轻松和定制化发送,不过在发给多用户时,可能会对该模块理解不到位,造成发送异常或信息缺失,这里就针对发给多个收件人,说说其中的两个可能遇到的坑。
问题1:发给多个收件人不成功
1tolist=['[email protected]', '[email protected]', '[email protected]']
2msg = MIMEMultipart()
3msg['from'] = fromuser
4msg['subject'] = subject
5msg['to'] = ','.join(tolist) //此处也有用 msg['to'] = ';'.join(tolist) 的
6server.sendmail(msg['from'], msg['to'], msg.as_string())
使用上面的示例进行发送时,会出现发送时,只有第一人收件人能收到email ,后面的人都无法收到的情况。该问题是由于server.sendmail 在接收多个收件人时,接到的信息是list 列表,而不是字符串 。这里将最后一行更改为如下即可:
1server.sendmail(msg['from'], 'tolist', msg.as_string())
这样来看,msg[’to’]这行的join语句是不是就没有意义了?接下来看第二个问题
问题2:都能收到,但没有收件人信息
先看下图:
我们将上面msg[’to’]这段信息取消掉后,就会没有收件人信息。
所以stmpmail 关于多个收件人这块也比较好理解:server.sendmail 里传参时的收件人是list,msg[’to’] 接收的变量值是字符串---即在邮件里显示的收信人信息。
该问题在stackoverflow问答站上也有人提问:Python Not Sending Email To Multiple Addresses
捐赠本站(Donate)
如您感觉文章有用,可扫码捐赠本站!(If the article useful, you can scan the QR code to donate))
- Author: shisekong
- Link: https://blog.361way.com/smtplib-multiple-addresses/5503.html
- License: This work is under a 知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议. Kindly fulfill the requirements of the aforementioned License when adapting or creating a derivative of this work.