python发送邮件的简单使用

Posted 沧海含笑

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python发送邮件的简单使用相关的知识,希望对你有一定的参考价值。

主代码如下:

点击查看代码
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time    : 2021/12/26 9:46 上午
# @Author  : Ayden
# @Site    : 
# @File    : send_email.py
from email.mime.multipart import MIMEMultipart
from email.mime.application import MIMEApplication
from email.mime.text import MIMEText
import smtplib
import pathlib
from conf.setting import *
from common.log import Log

log = Log().log()

def send_mail(host="xxxxxx", port=None, title=None, send_files=None, content=None):
    if not content:
        title = "车联网接口自动化测试报告"
    if not content:
        content = "     \\n\\n附件为车联网云平台接口自动化测试报告,请使用浏览器进行查看,访问地址为:\\n" \\
                  "     http://:\\n" \\
                  "\\n\\n本邮件为自动发出,请勿回复".format(host, port)
    mail_host = send_email["mail_host"]
    mail_port = send_email["mail_port"]
    mail_user = send_email["mail_user"]
    mail_password = send_email["mail_pass"]
    # log.debug("发件信息为:".format(send_email))
    try:
        msg = MIMEMultipart()
        msg[\'Subject\'] = title
        msg[\'To\'] = ",".join(receive_email)
        print(msg[\'To\'])
        msg[\'From\'] = mail_user
        body = MIMEText(content, \'plain\', \'utf-8\')
        if send_files:
            #for send_file in send_files:
            part_attach = MIMEApplication(open(send_files, \'rb\').read())  # 打开附件
            # 为附件命名
            part_attach.add_header(\'Content-Disposition\', \'attachment\', filename=pathlib.Path(send_files).name)
            # 添加附件
            msg.attach(part_attach)
        msg.attach(body)
        smtp = smtplib.SMTP(mail_host, mail_port)
        smtp.starttls()
        smtp.login(mail_user, mail_password)
        smtp.sendmail(mail_user, receive_email, msg.as_string())
        # log.debug("邮件发送成功")
        smtp.quit()
    except Exception as e:
        log.debug("邮件发送失败,原因是".format(e))

其中setting配置如下:

点击查看代码
# 发件人电子邮箱
send_email = "mail_host": "smtp.163.com", "mail_port": 25, "mail_user": "api_auto_test@163.com",
             "mail_pass": "XSJLZTQHSMAKPCMX"
# 收件人电子邮箱
receive_email = [\'api_auto_test@163.com\', \'lizhaoyong94@163.com\']

备注:以上日志模块请自行去除

Email:lizhaoyong94@163.com

以上是关于python发送邮件的简单使用的主要内容,如果未能解决你的问题,请参考以下文章

python简单的发送邮件

Python django实现简单的邮件系统发送邮件功能

Python django实现简单的邮件系统发送邮件功能

python 发送邮件

python实现发送邮件超简单

python 使用stmp发送邮件