python 发送qq邮件

Posted unan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 发送qq邮件相关的知识,希望对你有一定的参考价值。

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

def sen(file_new):
msg_from = [email protected]# 发送方邮箱
passwd = ‘xthwzlXXX‘ # 填入发送方邮箱的授权码
msg_to = [email protected]# 收件人邮箱

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 :
print("发送失败")

finally:
s.quit()



























以上是关于python 发送qq邮件的主要内容,如果未能解决你的问题,请参考以下文章

python发送邮件(qq邮箱)

python脚本连续发送QQ邮件

python发送邮件

python3通过qq邮箱发送邮件

python 发送qq邮件

python-qq邮箱发送邮件