python怎么用qq邮箱发送邮件

使用SSL的通用配置如下:

接收邮件服务器:pop.qq.com ,使用SSL,端口 995

发送邮件服务器: smtp.qq.com,使用SSL,端口 465或 587

账户名:QQ邮箱账户名(不用加“@qq.com”)

步骤一: 去设置-->账户-》找到POP3/IMAP  开启POP3/SMTP服务

代码如下:

# coding:utf-8
import smtplib
from email.mime.text import MIMEText
from email.header import Header

# 第三方 SMTP 服务
mail_host = "smtp.qq.com"  # 设置服务器
mail_user = "[email protected]"  # 用户名
mail_pass = "pgwhjrzdupxxxxb"  # 口令,QQ邮箱是输入授权码,在qq邮箱设置 里用验证过的手机发送短信获得,不含空格

sender = '[email protected]'
receivers = ['[email protected]']  # 接收邮件,可设置为你的QQ邮箱或者其他邮箱

message = MIMEText('python发送邮件', 'plain', 'utf-8')
message['From'] = Header("[email protected]", 'utf-8')
message['To'] = Header("[email protected]", 'utf-8')

subject = '使用python发送邮件的内容'
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 u"邮件发送成功"
except smtplib.SMTPException, e:
    print e

结果如下图:

python怎么用qq邮箱发送邮件_第1张图片


你可能感兴趣的:(python语言,web业务方案)