编程语言
首页 > 编程语言> > Python 使用Stmp服务使用QQ邮箱给某人发送邮件

Python 使用Stmp服务使用QQ邮箱给某人发送邮件

作者:互联网

# coding=utf-8
import smtplib
from email.mime.text import MIMEText

msg_from = 'abcdefghi@qq.com'  # 发送方邮箱
passwd = 'abcdefghijklmn'  # 填入发送方邮箱的授权码
msg_to = 'abcdefghi@qq.com'  # 收件人邮箱

subject = "python邮件测试"  # 主题
content = "这是我使用python smtplib及email模块发送的邮件"     # 正文
msg = MIMEText(content)
msg['Subject'] = subject
msg['From'] = msg_from
msg['To'] = msg_to
try:
    s = smtplib.SMTP_SSL("smtp.qq.com", 465)                    # 邮件服务器及端口号
    s.login(msg_from, passwd)
    s.sendmail(msg_from, msg_to, msg.as_string())
    print("发送成功")
except s.SMTPException:
    print("发送失败")

finally:
    s.quit()

 

标签:QQ,qq,Python,Stmp,发送,msg,邮箱,smtplib,com
来源: https://www.cnblogs.com/shenji/p/14843087.html