1 Star 0 Fork 6

csx123234/Python有趣的代码

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
发送电子邮件.py 901 Bytes
一键复制 编辑 原始数据 按行查看 历史
合肥吃货食光 提交于 2019-07-23 22:31 . 发送电子邮件
#-*- coding-8 -*-
import smtplib
from email.mime.text import MIMEText
from email.header import Header
smtp_server = "smtp.qq.com"
smtp_port = 465
smtp_username = "simon4055@foxmail.com"
smtp_password = "这里写授权码"
def sendmail(sender, receivers, Subject, Content, sendername):
mail = MIMEText(Content, "plain", "utf-8")
mail["From"] = Header(sendername, "utf-8")
mail["Subject"] = Subject
try:
server = smtplib.SMTP_SSL(smtp_server, smtp_port)
server.login(smtp_username, smtp_password)
server.sendmail(sender, receivers, mail.as_string())
server.quit()
except smtplib.SMTPException as E:
print("发送邮件失败!异常信息:", E)
if __name__ == "__main__":
sendmail("simon4055@foxmail.com", ["simon4055@foxmail.com", "56343418@qq.com"], "一起来学Python", "学Python,发送邮件测试...", "合肥吃货食光")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/csx123234/fun.git
git@gitee.com:csx123234/fun.git
csx123234
fun
Python有趣的代码
master

搜索帮助