首页 > 技术文章 > 通过邮件发短信

duanhaoxin 2019-08-22 16:07 原文

import smtplib
from email.mime.text import MIMEText

# 第三方 SMTP 服务
mail_host = "smtp.163.com" # SMTP服务器
mail_user = "" # 用户名
mail_pass = "" # 授权密码,非登录密码

sender = '' # 发件人邮箱(最好写全, 不然会失败)
receivers = [''] # 接收邮件,可设置为你的QQ邮箱或者其他邮箱


def sendEmail(title,content):
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("successfully.-----------")
except smtplib.SMTPException as e:
print(e)


if __name__ == '__main__':

推荐阅读