您的当前位置:首页正文

python中yagmail库有何用法?

2022-06-15 来源:知库网

 

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

yagmail库一直被称作是最有良心的库,主要的原因还是因为封装问题,因为封装的足够好,也非常好用,因此,经常被应用于发送邮件里使用。

安装配置:

pip install yagmail

支持环境:

Python2.7+

基本用法——发送邮件:

import  yagmail
username="xxxx@qq.com"  
password='vczyergtognwecge'  
csv_file_names = [x for x in os.listdir(".") if x.endswith(".csv")] 
contents = "<h1>An HTML Title</h1> Please find files attached" 
yag.send("my@friend.com", "The subject", contents, attachments=csv_file_names)

关于yagmail库的安装以及实例应用在上述已经清楚详细的介绍完毕了,大家有需求的话,可以认真学习了解哦~

显示全文