Python 使用其他邮件服务商的 SMTP 访问(QQ、网易、163、Google等)发送邮件,,163邮箱SMTP授


163邮箱SMTP授权

技术图片

使用Python SMTP发送邮件

# -*- coding:utf-8 -*-from __future__ import print_function__author__ = ‘yhwang‘__version__ = ‘1.0‘import smtplibfrom email.mime.text import MIMETextfrom email.header import Headermail_host="smtp.163.com" mail_user="m13262578991@163.com" mail_pass="XXXXXX"  sender = ‘m13262578991@163.com‘receivers = [‘1014080985@qq.com‘, ‘m13262578991@163.com‘] message = MIMEText(‘Python 邮件发送测试...‘, ‘plain‘, ‘utf-8‘)message[‘From‘] = Header("青蛙快飞", ‘utf-8‘)message[‘To‘] =  Header("测试", ‘utf-8‘) subject = ‘Python SMTP 邮件测试‘message[‘Subject‘] = Header(subject, ‘utf-8‘) for receiver in receivers:    try:        smtpObj = smtplib.SMTP_SSL(mail_host, port=465)         smtpObj.login(mail_user, mail_pass)        smtpObj.sendmail(sender, receiver, message.as_string())        smtpObj.quit()         print(u"%s邮件发送成功" % receiver)    except smtplib.SMTPException:        print(u"Error: 发送%s邮件失败" % receiver)

参考资料

https://www.cnblogs.com/xiaowuyi/archive/2012/03/17/2404015.html

Python 使用其他邮件服务商的 SMTP 访问(QQ、网易、163、Google等)发送邮件

评论关闭