python发送邮件yagmail的简单使用

Posted 圆觉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python发送邮件yagmail的简单使用相关的知识,希望对你有一定的参考价值。

yagmail发送邮件只需要3行代码就可以搞定,首先安装yagmail:pip install yagmail

demo如下:

#  todo 导入邮件服务器
import yagmail

sender = 148908761@qq.com     # 发送人邮箱账号
password = ersbmrvcnscebab    # 发送人邮箱授权码,而不是邮箱密码
res = 1858123247@163.com      # 收件人邮箱账号

yag = yagmail.SMTP(user=sender, password=password, host=smtp.qq.com, smtp_ssl=True)
content = rD:fileReport	est_2019_09_10_23_03_17_834.html
yag.send(to=res, subject=测试报告, contents=content)

运行报错:SMTPAuthenticationError解决方法:https://blog.csdn.net/qq_39241986/article/details/81349270

获取邮箱验证码:https://service.mail.qq.com/cgi-bin/help?subtype=1&&id=28&&no=1001256

以上是关于python发送邮件yagmail的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

Python快速发送邮件(yagmail)

天气提醒邮件服务器(python + scrapy + yagmail)

python模块----yagmail模块smtplib模块 (电子邮件)

python模块----yagmail模块smtplib模块 (电子邮件)

python发送邮件(yagmail模块)

Python实现发送邮件