码迷,mamicode.com
首页 > 编程语言 > 详细

python发送邮件yagmail的简单使用

时间:2019-10-26 01:26:36      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:而不是   方法   article   user   邮件服务器   art   gmail   dem   log   

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:\file\Report\test_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的简单使用

标签:而不是   方法   article   user   邮件服务器   art   gmail   dem   log   

原文地址:https://www.cnblogs.com/xiamaojjie/p/11741491.html

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