前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >python实现发送邮件

python实现发送邮件

原创
作者头像
用户7718188
修改2021-11-02 14:07:03
2920
修改2021-11-02 14:07:03
举报
文章被收录于专栏:高级工程司高级工程司

[Python]代码    

代码语言:javascript
复制
#_*_encoding:utf-8_*_

#script for python3.2

#-------------------------------------------------------------------------------

# Name:        发送邮件

# Purpose:

#

# Author:      QiuChangJie

#

# Created:     10/09/2012

# Copyright:   (c) cj.qiu 2012

# Licence:     <your licence>

#-------------------------------------------------------------------------------


import os
import smtplib
import mimetypes
from email.mime.multipart import MIMEMultipart
from email.mime.base import MIMEBase
from email.mime.text import MIMEText
from email.mime.audio import MIMEAudio
from email.mime.image import MIMEImage
from email.encoders import encode_base64

MAIL_163_USER = "test@163.com"
MAIL_163_PWD = "test"
MAIL_YEAH_USER = "test@yeah.com"
MAIL_YEAH_PWD = "test"
MAIL_GOOGLE_HOST = "smtp.gmail.com"
MAIL_163_HOST = "smtp.163.com"
MAIL_YEAH_HOST = "smtp.yeah.com"

RECIPIENT = ["test@dinglicom.com"]
ATTACHMENTS = []

class QMail():
    def __init__(self, user, pwd, host):
        self.mail_user = user
        self.mail_pwd = pwd
        self.mail_server = smtplib.SMTP()
        self.mail_server.connect(host)
        self.mail_server.ehlo()
        self.mail_server.starttls()
        self.mail_server.ehlo()
        self.mail_server.login(self.mail_user, self.mail_pwd)

    def __del__(self):
        self.mail_server.close()

    def send_mail(self, recipient, subject, text, att_files=[]):
        msg = MIMEMultipart()
        msg["From"] = self.mail_user
        msg["Subject"] = subject
        msg["To"] = ",".join(recipient)
        msg.attach(MIMEText(text))
        if len(att_files) > 0:
            for file_name in att_files:
                msg.attach(self.get_attachment(file_name))
        self.mail_server.sendmail(self.mail_user, recipient, msg.as_string())

    def get_attachment(self, file_name):
        content_type, encoding = mimetypes.guess_type(file_name)
        if content_type is None or encoding is not None:
            content_type = "application/octet-stream"
        main_type, sub_type = content_type.split('/', 1)
        file = open(file_name, "rb")
        if main_type == "text":
            attachment = MIMEText(file.read())
        elif main_type == 'message':
            attachment = email.message_from_file(file)
        elif main_type == 'image':
            attachment = MIMEImage(file.read(), _subType=sub_type)
        elif main_type == 'audio':
            attachment = MIMEAudio(file.read(), _subType=sub_type)
        else:
            attachment = MIMEBase(main_type, sub_type)
        attachment.set_payload(file.read())
        encode_base64(attachment)
        file.close()
        attachment.add_header('Content-Disposition', 'attachment', filename=os.path.basename(file_name))
        return attachment

def test():
    mail = QMail("test@163.com", "test", MAIL_163_HOST)
    mail.send_mail(["test@dinglicom.com"], "sub_test", "text_test", r"G:\WorkSpace\Doing\CMMI文档模板.dot")

if __name__ == '__main__':
    test()

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

原创声明:本文系作者授权腾讯云开发者社区发表,未经许可,不得转载。

如有侵权,请联系 cloudcommunity@tencent.com 删除。

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • [Python]代码    
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档