python邮件发送脚本

简介:
复制代码代码
#!/usr/bin/python
#coding=utf-8

#@author:dengyike
#@date:2010-09-28
#@version:1.0
#@description: auto sending email with attachment file

import email
import mimetypes
from email.MIMEMultipart import MIMEMultipart
from email.MIMEText import MIMEText
from email.MIMEImage import MIMEImage
import smtplib
import logging
import sys

reload(sys)
sys.setdefaultencoding('utf8')

mailDict = {} #邮件配置信息

###################
#日志辅助类
#################
class Logger:
    LOG_RELEASE= "releae"
    LOG_RELEASE_FILE = "/tmp/pyMail.log"

    def __init__(self, log_type):
        self._logger = logging.getLogger(log_type)
        if log_type == Logger.LOG_RELEASE:
            self._logFile = Logger.LOG_RELEASE_FILE
        handler = logging.FileHandler(self._logFile)
        if log_type == Logger.LOG_RELEASE:
            formatter = logging.Formatter('%(asctime)s ********* %(message)s')
        else:
            formatter = logging.Formatter('%(message)s')
        handler.setFormatter(formatter)
        self._logger.addHandler(handler)
        self._logger.setLevel(logging.INFO)

    def log(self, msg):
        if self._logger is not None:
            self._logger.info(msg)

MyLogger = Logger(Logger.LOG_RELEASE) #Logger

def initMailConf():#初始化邮件配置信息
    global mailDict
    mailDict['server'] = "smtp.google.com"
    mailDict['user'] = "dengyike"
    mailDict['password'] = "dengyike"
    mailDict["from"] = "dengyike@google.com"
    mailDict["cc"] = "dengyike@google.com,phinecos@google.com"
    mailDict["to"] = "dengyike@google.com"
    mailDict["subject"]  = "python邮件脚本测试"
    mailDict["text"] = "这里是普通文本信息"
    mailDict["html"] = '<font color = red ><b>这里是HTML文本信息</b></font>'
    
def sendMail(paramMap):#发送邮件
    smtp = smtplib.SMTP()
    msgRoot = MIMEMultipart('related')
    msgAlternative = MIMEMultipart('alternative')
    if paramMap.has_key("server") and paramMap.has_key("user") and paramMap.has_key("password"):
        try:
            smtp.set_debuglevel(1)
            smtp.connect(paramMap["server"])
            smtp.login(paramMap["user"], paramMap["password"])
        except Exception, e:
            MyLogger.log("smtp login exception!")
            return False
    else:
        MyLogger.log("Parameters incomplete!")
        return False

    if paramMap.has_key("subject") == False or  paramMap.has_key("from")== False or paramMap.has_key("to") == False:
        MyLogger.log("Parameters incomplete!")
        return False
    msgRoot['subject'] = paramMap["subject"]
    msgRoot['from'] = paramMap["from"]
    if paramMap.has_key("cc"):
        msgRoot['cc'] = paramMap["cc"]
    msgRoot['to'] = paramMap["to"]
    msgRoot.preamble = 'This is a multi-part message in MIME format.' 
    msgRoot.attach(msgAlternative)
    TempAddTo = paramMap["to"]
    if paramMap.has_key("text"):
        msgText = MIMEText(paramMap["text"], 'plain', 'utf-8')
        msgAlternative.attach(msgText)
    if paramMap.has_key("html"):
        msgText = MIMEText(paramMap["html"], 'html', 'utf-8')
        msgAlternative.attach(msgText)  
    if paramMap.has_key("image"):
        fp = open(paramMap["image"], 'rb')
        msgImage = MIMEImage(fp.read())
        fp.close()
        msgImage.add_header('Content-ID', '<image1>' )
        msgRoot.attach(msgImage) 
    if paramMap.has_key("cc"):
        TempAddTo = paramMap["to"] + "," + paramMap["cc"]   
    if TempAddTo.find(",") != -1:
        FinallyAdd = TempAddTo.split(",")
    else:
        FinallyAdd = TempAddTo 
        
    #构造附件
    fileName = "/tmp/test.zip"
    basename = os.path.basename(fileName)
    if os.path.exists(fileName): #数据文件存在
        data = open(fileName, 'rb')
        att = MIMEText(data.read(), 'base64', 'gb2312')
        att["Content-Type"] = 'application/octet-stream'
        att["Content-Disposition"] = 'attachment; filename="%s"' % basename
        msgRoot.attach(att)
        smtp.sendmail(paramMap["from"], FinallyAdd, msgRoot.as_string())
        smtp.quit()  
    return True
     
def process():
    global mailDict
    initMailConf()
    sendMail(mailDict)
    
if __name__ == "__main__":
    process()
复制代码
 最后把运行命令加入crontab中,就可以每天定时自动发送邮件了。


本文转自Phinecos(洞庭散人)博客园博客,原文链接:http://www.cnblogs.com/phinecos/archive/2010/09/28/1837578.html,如需转载请自行联系原作者
目录
相关文章
|
29天前
|
安全 网络安全 文件存储
思科设备巡检命令Python脚本大集合
【10月更文挑战第18天】
66 1
思科设备巡检命令Python脚本大集合
|
2月前
|
Python
用python转移小文件到指定目录并压缩,脚本封装
这篇文章介绍了如何使用Python脚本将大量小文件转移到指定目录,并在达到大约250MB时进行压缩。
39 2
|
25天前
|
关系型数据库 MySQL 数据库连接
python脚本:连接数据库,检查直播流是否可用
【10月更文挑战第13天】本脚本使用 `mysql-connector-python` 连接MySQL数据库,检查 `live_streams` 表中每个直播流URL的可用性。通过 `requests` 库发送HTTP请求,输出每个URL的检查结果。需安装 `mysql-connector-python` 和 `requests` 库,并配置数据库连接参数。
122 68
|
9天前
|
存储 Python
Python自动化脚本编写指南
【10月更文挑战第38天】本文旨在为初学者提供一条清晰的路径,通过Python实现日常任务的自动化。我们将从基础语法讲起,逐步引导读者理解如何将代码块组合成有效脚本,并探讨常见错误及调试技巧。文章不仅涉及理论知识,还包括实际案例分析,帮助读者快速入门并提升编程能力。
36 2
|
11天前
|
运维 监控 Python
自动化运维:使用Python脚本简化日常任务
【10月更文挑战第36天】在数字化时代,运维工作的效率和准确性成为企业竞争力的关键。本文将介绍如何通过编写Python脚本来自动化日常的运维任务,不仅提高工作效率,还能降低人为错误的风险。从基础的文件操作到进阶的网络管理,我们将一步步展示Python在自动化运维中的应用,并分享实用的代码示例,帮助读者快速掌握自动化运维的核心技能。
27 3
|
16天前
|
缓存 运维 NoSQL
python常见运维脚本_Python运维常用脚本
python常见运维脚本_Python运维常用脚本
21 3
|
16天前
|
数据采集 JSON 数据安全/隐私保护
Python常用脚本集锦
Python常用脚本集锦
16 2
|
17天前
|
运维 监控 应用服务中间件
自动化运维:如何利用Python脚本提升工作效率
【10月更文挑战第30天】在快节奏的IT行业中,自动化运维已成为提升工作效率和减少人为错误的关键技术。本文将介绍如何使用Python编写简单的自动化脚本,以实现日常运维任务的自动化。通过实际案例,我们将展示如何用Python脚本简化服务器管理、批量配置更新以及监控系统性能等任务。文章不仅提供代码示例,还将深入探讨自动化运维背后的理念,帮助读者理解并应用这一技术来优化他们的工作流程。
|
1月前
|
Linux 区块链 Python
Python实用记录(十三):python脚本打包exe文件并运行
这篇文章介绍了如何使用PyInstaller将Python脚本打包成可执行文件(exe),并提供了详细的步骤和注意事项。
55 1
Python实用记录(十三):python脚本打包exe文件并运行
|
18天前
|
运维 监控 Linux
自动化运维:如何利用Python脚本优化日常任务##
【10月更文挑战第29天】在现代IT运维中,自动化已成为提升效率、减少人为错误的关键技术。本文将介绍如何通过Python脚本来简化和自动化日常的运维任务,从而让运维人员能够专注于更高层次的工作。从备份管理到系统监控,再到日志分析,我们将一步步展示如何编写实用的Python脚本来处理这些任务。 ##
下一篇
无影云桌面