# 导入 smtplib 和 MIMEText import smtplib from email.mime.text import MIMEText # 定义发送列表 mailto_list=["root@pythontab.com","10118157@qq.com"] # 设置服务器名称、用户名、密码以及邮件后缀 mail_host = "smtp.163.com" mail_user = "xx@163.com" mail_pass = "xx" mail_postfix="163.com" # 发送邮件函数 def send_mail(to_list, sub, context): ''''' to_list: 发送给谁 sub: 主题 context: 内容 send_mail("xxx@126.com","sub","context") ''' me = mail_user + "<"+mail_user+"@"+mail_postfix+">" msg = MIMEText(context) msg['Subject'] = 'python email test' msg['From'] = sub msg['To'] = ";".join(to_list) try: send_smtp = smtplib.SMTP() send_smtp.connect(mail_host) send_smtp.login(mail_user, mail_pass) send_smtp.sendmail(me, to_list, msg.as_string()) send_smtp.close() print 'success' return True except (Exception, e): print(str(e)) print 'false' send_mail(mailto_list,"test mail","你好")
python发送邮件实例 - 使用smtplib模块
2018年12月17日 23:07
Python高级
文章评论(0)
-
kkkkkk 2018年12月21日 11:31真干活啊kkkkk2018年12月21日 11:16逸趣横生,读来可喜。叙述紧凑,扣人心弦。婉转流利,真实不虚内容充实,文字流利。
-
kkkkkk 2018年12月21日 11:31这评论真好啊!kkkkklxinde2018年12月21日 11:17炫丽清新,颇有韵味。流利贴切,描写佳妙。叙事抒情,均颇贴切。淋漓尽致,颇切题意。
-
kkkkklxinde 2018年12月21日 11:17炫丽清新,颇有韵味。流利贴切,描写佳妙。叙事抒情,均颇贴切。淋漓尽致,颇切题意。回复
-
kkkkk 2018年12月21日 11:16逸趣横生,读来可喜。叙述紧凑,扣人心弦。婉转流利,真实不虚内容充实,文字流利。回复