Python 2 发送网易邮件

2018-11-16  本文已影响5人  CodingTom
#!/usr/bin/python
# -*- coding: UTF-8 -*-
 
import smtplib
from email.mime.text import MIMEText
from email.header import Header
 
# 第三方 SMTP 服务
mail_host="smtp.163.com"  #设置服务器
mail_user="15****67@163.com"    #用户名
mail_pass="kinglsk"   #口令 
 
 
sender = '15******67@163.com'
receivers = ['113******13@qq.com']  # 接收邮件,可设置为你的QQ邮箱或者其他邮箱
 
message = MIMEText('Python...', 'plain', 'utf-8')
message['From'] = Header("CodingTom", 'utf-8')
message['To'] =  Header("Jome", 'utf-8')
 
subject = 'Python SMTP 邮件测试'
message['Subject'] = Header(subject, 'utf-8')
 
 
try:
    smtpObj = smtplib.SMTP_SSL(mail_host,465) 
    smtpObj.set_debuglevel(1)
#   smtpObj.starttls()
#   smtpObj.connect(mail_host)    # 25 为 SMTP 端口号
    smtpObj.login(mail_user,mail_pass)  
    smtpObj.sendmail(sender, receivers, message.as_string())
    smtpObj.close()
    print "邮件发送成功"
except smtplib.SMTPException:
    print "Error: 无法发送邮件"

上一篇下一篇

猜你喜欢

热点阅读