当前位置: 首页 > 图灵资讯 > 行业资讯> python中有哪些邮件模块

python中有哪些邮件模块

来源:图灵python
时间: 2024-06-24 13:42:49

1、发邮件模块使用yagmail模块。

2、可访问系统密钥环服务的keyring模块。

3、定时任务执行器采用schedule模块。

4、IMAP操作inbox模块的IMA包。

实例

importyagmail
username='xxxxxx@beegee.org'
password='xxxxx'
smtp='smtp.exmail.qq.com'
mail=yagmail.SMTP(user=username,password=password,host=smtp)

to=['69xxxxxxxxxxx@qq.com']
cc=['69xxxxxxxxxxx@qq.com']
subject='发红包!'
content='发红包!'
files=[r'D:\test\第一课\01.txt',r'D:\test\第一课\02.txt']
mail.send(to=to,cc=cc,subject=subject,contents=content,attachments=files)

以上是python中邮件模块的介绍,希望对大家有所帮助。更多Python学习指南:python基础教程

本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。