这个话题是知乎的一个话题https://www.zhihu.com/question/24590883
,在里面发现了好多好用的第三方类库,可以节省很多的时间。
邮件发送 :yagmail
python官方的smtp服务使用起来非常不方便,还有很多的import需要导入
使用yagmail加上引入 只需要写三行代码就够了。
import yagmail
yag = yagmail.SMTP(user='joy_lmx@163.com', password='nicai?', host='smtp.163.com', port='25')
yag.send(user, subject = "I now can send an attachment", attachments=['a.txt', 'b.jpg'])
Tags: yagmail