1、yagmail模块用于发邮件模块。
2、keyring模块可以访问系统密钥环服务。
3、schedule模块用于定时任务执行器。
4、inbox模块的IMA包进行IMAP操作。
python邮件模块实例
import?yagmail username?=?'xxxxxx@beegee.org' password?=?'xxxxx' smtp?=?'smtp.exmail.qq测试数据' mail?=?yagmail.SMTP(user=username,password=password,host=smtp) ? to?=?['69xxxxxxx@qq测试数据'] cc?=?['69xxxxxxx@qq测试数据'] 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中邮件模块的介绍,希望对大家有所帮助。
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did181018