码迷,mamicode.com
首页 > 编程语言 > 详细

Python_发送邮件

时间:2021-06-06 19:32:03      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:aaa   password   smt   xxxx   chm   use   username   发送邮件   tac   

import yamail
username = "xxxxxx@qq.com"
password = "xxxxxx"
host = "smtp.qq.com"
# host = "smtp.163.com" #163
# host = "smtp.126.com" #qq
# smtp.send(to="aaaaaa@qq.com")

smtp = yamail.SMTP(host=host,user=username,password=password)
smtp.send(to=["aaaaaaa@qq.com"],
cc=["ssssssss@qq.com"],
subject="你好呀",
contents="哈哈哈哈",
attachments="qq.xls")

Python_发送邮件

标签:aaa   password   smt   xxxx   chm   use   username   发送邮件   tac   

原文地址:https://www.cnblogs.com/my-own-goddess/p/14855152.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!