vue项目接口域名动态的获取方法
437
2022-08-24
python实现邮件发送功能(python发送邮件模块)
用最简单的方法实现邮件发送功能,拒绝重复造轮子,提供工作效率。
目录
1、安装依赖
2、发送文本邮件
3、发送多人邮件
4、发送附件邮件
1、安装依赖
pip install yagmail
2、发送文本邮件
import yagmail# 初始化config = yagmail.SMTP(user='1740837342@qq.com', password='mypassword', host='smtp.qq.com')# 发送邮件config.send(to='aida_pc@qq.com', subject='Testing Yagmail', contents='Hello Yagmail!')
3、发送多人邮件
import yagmail# 初始化config = yagmail.SMTP(user='1740837342@qq.com', password='mypassword', host='smtp.qq.com')# 发送多人邮件config.send(to=['aida_pc@qq.com', 'aida_pc@163.com'], subject='Testing Yagmail', contents='Hello Yagmail!')
4、发送附件邮件
只需要在 send() 函数中多设置一个 attachments 参数即可:
import yagmail# 初始化config = yagmail.SMTP(user='1740837342@qq.com', password='mypassword', host='smtp.qq.com')# 发送邮件config.send(to='aida_pc@qq.com', subject='Testing Yagmail', contents='Hello Yagmail!',attachments=['1.jpg','2.jpg'])
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~