博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Python 发邮件
阅读量:4949 次
发布时间:2019-06-11

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

1 def send_mail(to_list,sub,content):   2     me="MBD-data"+"<"+mail_user+"@"+mail_postfix+">"   3     msg = MIMEText(content,_subtype='plain',_charset='utf-8')   4     msg['Subject'] = sub   5     msg['From'] = me   6     msg['To'] = ";".join(to_list)   7     try:   8         server = smtplib.SMTP()   9         server.connect(mail_host)  10         server.login(mail_user,mail_pass)  11         server.sendmail(me, to_list, msg.as_string())  12         server.close()  13         return True  14     except Exception, e:  15         print time.strftime('%Y-%m-%d',  time.localtime(time.time())) + " : "+ str(e)  16         return False

mail_user 发件人用户名

mail_postfix 发件邮箱域名

sub 邮件主题

content 邮件内容

to_list 收件人列表

mail_host smtp服务器域名

mail_pass 发件人密码

需要

import smtplib,time

from email.mime.text import MIMEText 

转载于:https://www.cnblogs.com/t-witness/p/3530203.html

你可能感兴趣的文章
OO第三阶段总结
查看>>
构建之法阅读笔记02
查看>>
继承基础--成员变量和方法的动态绑定-测试
查看>>
【bzoj1578/Usaco2009 Feb】Stock Market 股票市场——完全背包
查看>>
Direct2D教程IV——笔刷(Brush)对象
查看>>
记bugku的——“welcome to bugkuctf”
查看>>
linux 下载并安装Memcache服务器端
查看>>
C# 利用QRCode生成二维码图片
查看>>
java5新特性-加强for循环
查看>>
用LINQ对Dictionary排序
查看>>
File类
查看>>
drawText()文本居中显示
查看>>
分页显示Excel数据
查看>>
代码创建IIS站点
查看>>
百度地图路径规划
查看>>
脚本创建的元素添加事件无反应
查看>>
【BZOJ 1770 】 [Usaco2009 Nov]lights 燈 dfs+异或方程组
查看>>
时间格式HH:mm
查看>>
阅读思考
查看>>
Informix ESQL/C使用游标的一个example
查看>>