最近有发邮件的需求 发现了一个python发邮件的开源项目yagmail, 3行代码搞定邮件, 很赞
以下三行代码实现的功能
- 发送超链接
- 发送图片资源(支持发送各种静态资源, 文件名最好是英文)
源码
import yagmail
# 连接邮箱服务器
yag = yagmail.SMTP(user="lijianzhaoyou@163.com", password="填自己的", host='smtp.163.com')
# 邮箱正文
contents = ['今天是周末,我要学习, 学习使我快乐;', '<a href="https://www.python.org/">python官网的超链接</a>', './girl.jpg']
# 发送邮件
yag.send('zhaoolee@gmail.com', '主题:学习使我快乐', contents)
图片资源在此:
如何获取163邮箱授权码?
本仓库Github链接: https://github.com/kootenpv/yagmail
写在最后(我需要你的支持)
本文属于Github星聚弃疗榜 项目的一部分, 项目Github地址: https://github.com/zhaoolee/StarsAndClown
Github星聚弃疗榜, 为Github优秀创意项目写一封推荐信,让Github优秀项目造福人类~, 如果你喜欢这个项目, 希望你能为本项目添加一颗 🌟星.
StarsAndClown, Write a letter of recommendation for Github's outstanding creative projects, and let Github's outstanding projects benefit mankind~, If you like this project, I hope you can add a star 🌟 to this project.