首页 > 编程语言 > 详细

python发送邮件

时间:2021-04-16 18:01:32      阅读:20      评论:0      收藏:0      [点我收藏+]





#!/usr/bin/env python3
# author:Alnk(李成果)
import smtplib
from email.mime.text import MIMEText


# 第三方 SMTP 服务
mail_host = "smtp.qq.com"  # SMTP服务器
mail_user = "10296******@qq.com"  # 用户名
mail_pass = "**********"  # 密码(这里的密码不是登录邮箱密码,而是授权码)

sender = ‘10296*****@qq.com‘  # 发件人邮箱
receivers = [‘lichengguo@*****.com‘, ‘lichengguo@*****.net‘]  # 接收人邮箱

title = ‘Python SMTP Mail Test‘  # 邮件主题
content = ‘Python Send Mail !‘  # 邮件内容
message = MIMEText(content, ‘plain‘, ‘utf-8‘)  # 内容, 格式, 编码
message[‘From‘] = "{}".format(sender)
message[‘To‘] = ",".join(receivers)
message[‘Subject‘] = title


try:
    smtpObj = smtplib.SMTP_SSL(mail_host, 465)  # 启用SSL发信, 端口一般是465
    smtpObj.login(mail_user, mail_pass)  # 登录验证
    smtpObj.sendmail(sender, receivers, message.as_string())  # 发送
    print("mail  send successfully.")
except smtplib.SMTPException as e:
    print(e)


python发送邮件

原文:https://www.cnblogs.com/lichengguo/p/14666819.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!