yagmail 发送邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yagmail 发送邮件相关的知识,希望对你有一定的参考价值。
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 发送邮件的主要内容,如果未能解决你的问题,请参考以下文章