python邮件发送-smtplib

Posted lucylu

tags:

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

import smtplib
from email.mime.text import MIMEText
from email.header import Header

# 第三方 SMTP 服务
mailserver =  "***"  # 设置服务器
username_send = "***"  # 用户名
password = "***"  # 口令

sender="***"  #发件人
recipients = [‘***‘]  # 接收邮件,可设置为你的QQ邮箱或者其他邮箱

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‘)

try:
    smtpObj = smtplib.SMTP()
    smtpObj.connect(mailserver, 25)  # 25 为 SMTP 端口号
    smtpObj.login(username_send, password)
    smtpObj.sendmail(sender, recipients, message.as_string())
    print("邮件发送成功")
except smtplib.SMTPException:
    print("Error: 无法发送邮件")

 

QQ邮箱:https://service.mail.qq.com/cgi-bin/help?id=28,QQ邮箱需要设置一个授权码(password)

 


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

python smtplib发送邮件可直接运行代码

编写python的smtplib库发送邮件代码(简洁-原创)

利用Python的smtplib和email发送邮件

Python + HTMLTestRunner + smtplib 完成测试报告生成及发送测试报告邮件

python smtplib发送邮件

python smtplib发送邮件