【Python】一键式发邮件小脚本

 

     工作中涉及到给客户定时发邮件,这里提供一个Python小脚本,单独放进一个py小文件,每次用时import一下非常简单方便。

#!/usr/bin/env python
# -*- coding: utf-8 -*-


"""
create_author: 蛙鳜鸡鹳狸猿
create_time  : 2016-10-10
program      : *_*send email*_*
"""


import smtplib
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart


class Smtp(object):
    def __init__(self, host, user, password, port=25):
        """
        SMTP server init. See also
            https://docs.python.org/2.7/library/smtplib.html
        :param host: SMTP server host.
        :param user: SMTP server user.
        :param password: SMTP server password.
        :param port: SMTP server port.
        """
        self.host = host
        self.port = port
        self.user = user
        self.password = password

        self.smtp = smtplib.SMTP()

    def __enter__(self):
        self.smtp.connect(host=self.host, port=self.port)
        self.smtp.login(user=self.user, password=self.password)
        return self.smtp

    def __exit__(self, exc_type, exc_val, exc_tb):
        self.smtp.quit()


class Mail(object):
    def __init__(self, _from, _to, _cc=None, _bcc=None, _subject='', _body='', _attach=None):
        """
        Mail object init. See also
            https://docs.python.org/2.7/
            https://tools.ietf.org/html/rfc4021
        There is a BUG remained that `cc` and `bcc` accounts display in recipients list and can not be hidden. See also
            https://stackoverflow.com/questions/1546367/python-how-to-send-mail-with-to-cc-and-bcc
        :param _from: mail sender.
        :param _to: mail recipients list.
        :param _cc: mail cc recipients list.
        :param _bcc: mail bcc recipients list.
        :param _subject: mail subject.
        :param _body: mail body.
        :param _attach: mail attachments list.
        """
        self._from = _from
        self._to = _to
        self._cc = _cc
        self._bcc = _bcc
        self._subject = _subject
        self._body = _body
        self._attach = _attach

    def construct_mail(self):
        msg = MIMEMultipart()
        msg['From'] = self._from
        msg['To'] = ','.join(self._to)
        if self._cc:
            msg["Cc"] = ','.join(self._cc)
        if self._bcc:
            msg["Bcc"] = ','.join(self._bcc)
        msg['subject'] = self._subject
        msg.attach(MIMEText(self._body, _charset="utf-8"))
        if self._attach:
            for _ in self._attach:
                msg_attach = MIMEText(open(_[0] + _[1], "rb").read(), _subtype="base64", _charset="utf-8")
                msg_attach.add_header("Content-Disposition", "attachment", filename=_[1])
                msg_attach["Content-Type"] = "application/octet-stream"
                msg.attach(msg_attach)
        return msg

    def send_mail(self, smtp):
        tos = self._to
        if self._cc:
            tos += self._cc
        if self._bcc:
            tos += self._bcc
        smtp.sendmail(self._from, tos, self.construct_mail().as_string())


if __name__ == "__main__":
    SMTP = {
        "host": "localhost",
        "port": 587,
        "user": "zoo",
        "password": "1024",
    }
    MAIL = {
        "_from": "noreply@mail.com",
        "_to": ["to_a@mail.com", "to_b@mail.com"],
        "_cc": ["cc_a@mail.com", "cc_b@mail.com"],
        "_bcc": ["bcc_a@mail.com", "bcc_b@mail.com"],
        "_subject": "test mail",
        "_body": "test mail\n\t(generate by Python2.7.17)",
        "_attach": [["/home/zoo/", "attach_a.xlsx", ], ],
    }
    with Smtp(**SMTP) as s:
        Mail(**MAIL).send_mail(s)

     也就是把所有的参数放进一个大字典,直接取用就可以了,非常一目了然。在Linux服务器上,当然也可以非常简单地进行Shell发邮件,参考:http://blog.csdn.net/sweeper_freedoman/article/details/52782345

 



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值