码迷,mamicode.com
首页 > 其他好文 > 详细

yagmail 发送邮件

时间:2020-06-30 18:57:16      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:send   ref   tmp   pre   附件   host   test   path   nts   

python更加便捷发送邮件

参考链接:https://www.cnblogs.com/fnng/p/7967213.html

## pip install yagmail

import yagmail

# 链接邮箱服务器
yag = yagmail.SMTP(user="user@126.com", password="1234", host=‘smtp.126.com‘)

# 收件人
mail_to = ["ccccc@qq.com", "ddddd@qq.com"]

# 邮箱标题
subject = [‘我是标题‘]

# 邮箱正文
contents = [
    ‘我是正文‘, ‘You can find an audio file attached.‘, ‘/local/path/song.mp3‘
]

# 邮箱附件
extra_file = [‘/tmp/readme.md‘, ‘/tmp/test.txt‘]

# 发送邮件
yag.send(mail_to, subject, contents, extra_file)

yagmail 发送邮件

标签:send   ref   tmp   pre   附件   host   test   path   nts   

原文地址:https://blog.51cto.com/11114389/2507663

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!