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

yipeiwu_com6年前Python基础

本文实例讲述了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程序设计有所帮助。

相关文章

python实现将html表格转换成CSV文件的方法

本文实例讲述了python实现将html表格转换成CSV文件的方法。分享给大家供大家参考。具体如下: 使用方法:python html2csv.py *.html 这段代码使用了 HTM...

python 遍历列表提取下标和值的实例

如下所示: for index,value in enumerate(['apple', 'oppo', 'vivo']): print(index,value) 以上这篇py...

Python中处理字符串之islower()方法的使用简介

 islower()方法判断检查字符串的所有的字符(字母)是否为小写。 语法 以下是islower()方法的语法: str.islower() 参数  ...

pycharm配置git(图文教程)

pycharm配置git(图文教程)

下载git客户端  FileàDefault Settingà Version Controlà Git Path to Git executable 填写git客户端的git...

关于python写入文件自动换行的问题

现在需要一个写文件方法,将selenium的脚本运行结果写入test_result.log文件中 首先创建写入方法 def write_result(str): writeres...