使用Python SMTP发送邮件
Posted zhf123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Python SMTP发送邮件相关的知识,希望对你有一定的参考价值。
import smtplib
from email.mime.text import MIMEText
# 服务器
SMPTserver = "smtp.163.com"
# 发送邮件的地址(自己的邮箱地址)
sender = "xxxxxx@163.com"
# 授权密码(不等同于登录密码)
password = "xxxxxxxxxxx"
# 发送的文本内容
message = "zhf is a good man"
# 转为邮件文本
msg = MIMEText(message)
msg["Subject"] = "zhf"
msg["From"] = sender
# 连接smtp服务器
mailServer = smtplib.SMTP(SMPTserver, 25)
# 登录
mailServer.login(sender, password)
# 发送邮件
mailServer.sendmail(sender, ["xxxxxxx@qq.com"], msg.as_string())
mailServer.quit()
以上是关于使用Python SMTP发送邮件的主要内容,如果未能解决你的问题,请参考以下文章