码迷,mamicode.com
首页 > 编程语言 > 详细

python邮件发送-smtplib

时间:2020-11-07 16:31:56      阅读:21      评论:0      收藏:0      [点我收藏+]

标签:send   ror   word   成功   sage   connect   string   utf-8   ext   

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

标签:send   ror   word   成功   sage   connect   string   utf-8   ext   

原文地址:https://www.cnblogs.com/lucylu/p/13938397.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!