Python发送邮件
Posted 黑。白。
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python发送邮件相关的知识,希望对你有一定的参考价值。
import yamail
# 邮箱username
# password
username = "xxx@qq.com"
password = "xxx"
host = "smtp.qq.com" #qq
# host = "smtp.163.com" #163
# host = "smtp.126.com" #qq
smtp = yamail.SMTP(host=host,user=username,password=password)
# smtp.send(to="1018934314@qq.com")
smtp.send(
to=["xxx@qq.com","1xxx@qq.com"],
cc=["xxx@qq.com","xxx@qq.com"],
subject="课后好好学习",
contents="下课之后先吃饭,吃完饭明天好好学习。",
attachments=["a.jpg","a.xls"]
以上是关于Python发送邮件的主要内容,如果未能解决你的问题,请参考以下文章
Javascript - 使用 HTML 片段通过电子邮件发送 JSON 输出