邮件接口 修改信息提示

此处运用到QQ邮箱账号跟授权码

import smtplib

# from email.header import Header
from email.mime.text import MIMEText

# 第三方 SMTP 服务


class sendhandle:
    def __init__(self, info, person):
        self.mail_host = "smtp.qq.com"      # SMTP服务器
        self.mail_user = "473450296@qq.com"                  # 用户名
        self.mail_pass = "******"               # 授权密码,非登录密码
        self.sender = "473450296@qq.com"
        self.receivers = ["jianjun-chen@hisuntest.com"]
        self.content = '%s' % info
        self.title = 'HiSun product information changed by %s' % person  # 邮件主题

    def sendEmail(self):

        message = MIMEText(self.content, 'plain', 'utf-8')  # 内容, 格式, 编码
        message['From'] = "{}".format(self.sender)
        message['To'] = ",".join(self.receivers)
        message['Subject'] = self.title

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



# def send_email2(SMTP_host, from_account, from_passwd, to_account, subject, content):
#     email_client = smtplib.SMTP(SMTP_host)
#     email_client.login(from_account, from_passwd)
#     # create msg
#     msg = MIMEText(content, 'plain', 'utf-8')
#     msg['Subject'] = Header(subject, 'utf-8')  # subject
#     msg['From'] = from_account
#     msg['To'] = to_account
#     email_client.sendmail(from_account, to_account, msg.as_string())
#
#     email_client.quit()
#
#
# if __name__ == '__main__':
#     sendhandle().sendEmail()
原文地址:https://www.cnblogs.com/cjj-zyj/p/10107337.html