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

使用Python SMTP发送邮件

时间:2019-09-16 00:34:34      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:服务器   tp服务器   smp   password   smtp   xxx   pre   pts   man   

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发送邮件

标签:服务器   tp服务器   smp   password   smtp   xxx   pre   pts   man   

原文地址:https://www.cnblogs.com/zhf123/p/11525005.html

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