python发邮件

允我心安 提交于 2019-12-04 06:02:30

yagmail 实现发邮件

yagmail 可以更简单的来实现自动发邮件功能。

 

1、安装

1 pip install yagmail

 

2、简单举例

 1 import yagmail
 2 
 3 #链接邮箱服务器
 4 yag = yagmail.SMTP( user="user@126.com", password="1234", host='smtp.126.com')
 5 
 6 # 邮箱正文
 7 contents = ['This is the body, and here is just text http://somedomain/image.png',
 8             'You can find an audio file attached.', '/local/path/song.mp3']
 9 
10 # 发送邮件
11 yag.send('taaa@126.com', 'subject', contents)

 

3、给多个用户发送邮件

1 # 发送邮件
2 yag.send(['aa@126.com','bb@qq.com','cc@gmail.com'], 'subject', contents)

 

4、发送带附件邮件

1 # 发送邮件
2 yag.send('aaaa@126.com', '发送附件', contents, ["d://log.txt","d://baidu_img.jpg"])

 

 

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!