Home  >  Article  >  Backend Development  >  python同时给两个收件人发送邮件的方法

python同时给两个收件人发送邮件的方法

WBOY
WBOYOriginal
2016-06-06 11:15:362138browse

本文实例讲述了python同时给两个收件人发送邮件的方法。分享给大家供大家参考。具体分析如下:

该范例通过python内置的smtplib包发送邮件

import smtplib
import string
host = "localhost"
fromclause = "a@b.com"
toclause = "c@d.com, e@f.com"
toclause = string.splitfields(toclause, ",")
msgbody = """
Test!
Best Regards
"""
SMTPServer = smtplib.SMTP(host)
SMTPServer.sendmail(fromclause, toclause, msgbody)
SMTPServer.quit()

希望本文所述对大家的Python程序设计有所帮助。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn