首先安装sendmail
yum install
sendmail
service sendmail
start
安装完成后,sendmail默认可以用localhost来向外面发送邮件。
用python发送邮件:
参考
实例代码如下:
(send_mail.py)
import smtplib
import email
from email.mime.text import MIMEText
from email.mime.multipart import MIMEMultipart
import datetime
import logging
import config
LOG = logging.getLogger("email")
def _send_mail(to_list,sub,content):
"""
to_list: email to who?
sub: email subject
content: email content
send_mail("aaa@126.com","sub","content")
"""
me=config.mail_user+"<"+config.mail_user+"@"+config.mail_postfix+">"
#msg = MIMEText(content)
msgRoot = MIMEMultipart('related')
msgRoot['Subject'] = sub
msgRoot['From'] = me
msgRoot['To'] = ";".join(to_list)
msgRoot['Date'] = email.Utils.formatdate()
msgRoot.preamble = 'This is a message from ***'
msgAlt = MIMEMultipart('alternative')
msgRoot.attach(msgAlt)
html = content
html_part = MIMEText(html, 'html', 'utf-8')
msgAlt.attach(html_part)
try:
s = smtplib.SMTP()
s.connect(config.mail_host)
#s.login(config.mail_user,config.mail_pass)
s.sendmail(me, to_list, msgRoot.as_string())
s.close()
return True
except Exception, e:
LOG.exception(str(e))
print str(e)
return False
def fill_table(content):
text =""" <p>Hi,</p>
<p>The following messages are from inconsistency check :</p>
<p></p>
"""
head = """<table border=1 style="font-size:10.0pt;border-collapse:collapse;"
bordercolor="black" cellpadding=4>"""
end = "</table>"
sub = """<tr>
<th>Time</th>
<th>Inconsistency Item</th>
<th>Database Value</th>
<th>Actual Check Result</th>
</tr>"""
return text + head + sub + content + end
def send_email(content):
t = str(datetime.datetime.now())
subject = "check result: %s" % t
content = fill_table(content)
if _send_mail(config.mailto_list,subject,content):
print "send email success."
LOG.info("send email:%s success." % subject)
else:
print "send email fail."
LOG.error("send email:%s fail" % subject)
return
其中config.py的配置如下:
# mail to, multi destinations must split with ','
mailto_list = ["aaa@126.com, bbb@126.com"]
# mail from
mail_host="localhost"
mail_user="root"
mail_postfix="bbb.com" #域名
发送email的content的格式如下:
直接调用send_email(self.email_content)即可发送。
def _add_email_content(self, output):
t = str(datetime.datetime.now())
content = """<tr>
<td>%s</td>
<td>%s</td>
<td>%s</td>
<td>%s</td>
</tr>""" % (t, str(output[0]), str(output[1]), str(output[2]))
self.email_content = self.email_content + content
分享到:
相关推荐
Python发邮件代码
这里我们关注的主题是“Python发邮件源码”,这通常涉及到使用SMTP(Simple Mail Transfer Protocol)来实现邮件的发送。下面我们将深入探讨这个话题,并提供一个实际的Python代码示例。 首先,你需要了解Python中...
详细展示了各种使用python发邮件的程序实例
python发送邮件代码,服务器配置请自行修改,脚本中的地址是内网搭建的邮件服务器。可以结合系统定时任务配置邮件定时发送。希望帮到你
简单的python发送邮件的示例,基于python2.7
python发邮件程序,发送方法:./mail.py 收件人 主题 html内容 图片文件 附件文件'
半天时间写了个python发送邮件的脚本 作者: jeffery ( email:dungeonsnd@126.com, msn:dungeonsnd@hotmail.com, csdn blog:http://blog.csdn.net/dungeonsnd) 时间: 2011-06-19 地点: SH --------------------------...
Python发送邮件是编程中常见的需求,特别是在自动化任务和通知系统中。本文档主要介绍了两种使用Python发送邮件的方法,涉及到了smtplib和email模块。 首先,smtplib是Python的标准库,它提供了一种与SMTP(简单...
本课程设计的目标是利用Python实现多进程发送邮件的功能。 首先,我们需要了解Python中的`multiprocessing`模块,它是Python提供的一个标准库,用于实现多进程。通过创建子进程,每个进程可以独立地执行任务,互不...
python发送邮件,通过qq邮箱代理,具体怎么设置请百度(获取qq邮箱授权码),可以发送邮件到邮箱,非常简洁的代码
使用python3发送QQ电子邮件,发送人为自己,接收人可以一个可以多个。
在Python编程中,发送邮件是一项常见的任务,尤其在自动化测试或通知系统中。要实现这一功能,我们可以利用Python内置的`smtplib`和`email`模块。`smtplib`负责处理邮件的发送过程,而`email`则用于构建邮件内容。在...
在Python编程语言中,发送邮件是一项常见的任务,尤其在自动化脚本或系统通知中非常有用。Python通过内置的`smtplib`库提供了对简单邮件传输...解压后,通过阅读和理解代码,可以更好地掌握Python发送邮件的实践技巧。
python发送邮件源码有注释
使用python发送邮件,使用的是smtplib库
这是python发送邮件的源码,支持群发和添加邮件, 文章中有免费下载地址,这里是土豪专用下载地址,
标题中的“使用Python发送邮件附件以定时备份MySQL的教程”是指使用Python编程语言编写脚本来自动备份MySQL数据库,并将备份文件作为邮件附件发送出去。这个过程通常涉及到几个关键步骤:数据库备份、文件处理以及...
subject = 'Python发送的报表' body = '这是使用Python自动发送的报表邮件。' msg = MIMEMultipart() msg['From'] = sender msg['To'] = receiver msg['Subject'] = subject ``` 若邮件内容包含纯文本和HTML两种...
python发送邮件的脚本 作者: jeffery ( email:dungeonsnd@126.com, msn:dungeonsnd@hotmail.com, csdn blog:http://blog.csdn.net/dungeonsnd) 时间: 2011-07-10 地点: GZ ----------------------------------------...
以下是一个基本的Python发送邮件的示例代码: ```python import smtplib from email.mime.text import MIMEText from email.utils import formataddr my_sender = '发件人邮箱账号' my_user = '收件人邮箱账号' ...