本文实例讲述了python同时给两个收件人发送邮件的方法。分享给大家供大家参考。具体分析如下:
该范例通
本文来源gao!daima.com搞$代!码#网#
过python内置的smtplib包发送邮件
import smtplibimport stringhost = "localhost"fromclause = "[email protected]"toclause = "[email protected], [email protected]"toclause = string.splitfields(toclause, ",")msgbody = """Test!Best Regards"""SMTPServer = smtplib.SMTP(host)SMTPServer.sendmail(fromclause, toclause, msgbody)SMTPServer.quit()
希望本文所述对大家的Python程序设计有所帮助。