博客
关于我
ptyhon 企业邮箱 发邮件
阅读量:336 次
发布时间:2019-03-04

本文共 825 字,大约阅读时间需要 2 分钟。

import smtplibfrom email.mime.text import MIMETextfrom email.header import Headerdef send_email_to_d(mesg, receivers=['dyl.sun@chinaentropy.com', 'kes.xie@chinaentropy.com']:    # 第三方 SMTP 服务配置    MAIL_HOST = "smtp.exmail.qq.com"    MAIL_USER = "kes.xie@chinaentropy.com"    MAIL_PASS = "43123131"    SENDER = 'kes.xie@chinaentropy.com'        message = MIMEText(mesg, 'plain', 'utf-8')    message['From'] = Header(SENDER, 'utf-8')    message['To'] = Header('dyl', 'utf-8')    subject = '数据库报错'    message['Subject'] = Header(subject, 'utf-8')        try:        smtpObj = smtplib.SMTP_SSL(MAIL_HOST, 465)        smtpObj.login(MAIL_USER, MAIL_PASS)        smtpObj.sendmail(SENDER, receivers, message.as_string())        smtpObj.quit()        print("邮件发送成功")    except smtplib.SMTPException:        print("邮件发送失败:无法连接SMTP服务器")

转载地址:http://dtce.baihongyu.com/

你可能感兴趣的文章
POJ 3468 A Simple Problem with Integers
查看>>
poj 3468 A Simple Problem with Integers 降维线段树
查看>>
poj 3468 A Simple Problem with Integers(线段树 插线问线)
查看>>
poj 3485 区间选点
查看>>
poj 3518 Prime Gap
查看>>
poj 3539 Elevator——同余类bfs
查看>>
Qt笔记——官方文档全局定义(三)Macros宏
查看>>
poj 3628 Bookshelf 2
查看>>
Qt笔记——官方文档全局定义(一)Types数据类型
查看>>
POJ 3670 DP LIS?
查看>>
POJ 3683 Priest John's Busiest Day (算竞进阶习题)
查看>>
POJ 3988 Selecting courses
查看>>
POJ 4020 NEERC John's inversion 贪心+归并求逆序对
查看>>
poj 4044 Score Sequence(暴力)
查看>>
POJ 基础数据结构
查看>>
POJ 题目3020 Antenna Placement(二分图)
查看>>
Poj(1797) Dijkstra对松弛条件的变形
查看>>
SpringBoot为什么不需要xml配置文件?
查看>>
POJ--2391--Ombrophobic Bovines【分割点+Floyd+Dinic优化+二分法答案】最大网络流量
查看>>
Qt笔记——SQLite初探QSqlDatabase QSqlQuery
查看>>