简单的python smtp发邮件代码

简单的python smtp发邮件代码 | 百变贝贝

简单的python smtp发邮件代码



2007年六月9日 by 贝贝爸


Leave a reply »

写了一个服务器的监控程序,里面用到邮件提醒功能。python sample code里面没有认证的部分,于是查了文档,google了一下,下了如下的smtp发送邮件的函数,支持smtp验证。代码如下:

#!/usr/bin/env python
# -*- coding: gbk -*-
#导入smtplib和MIMEText
import smtplib
from email.mime.text import MIMEText
#############
#要发给谁,这里发给2个人
mailto_list=["aaa@juyimeng.com","bbb@juyimeng.com"]
#####################
#设置服务器,用户名、口令以及邮箱的后缀
mail_host="smtp.126.com"
mail_user="xxx"
mail_pass="yyy"
mail_postfix="126.com"
######################
def send_mail(to_list,sub,content):
    
'''
    to_list:发给谁
    sub:主题
    content:内容
    send_mail("aaa@126.com","sub","content")
    
'''
    
me=mail_user+"<"+mail_user+"@"+mail_postfix+">"
    
msg = MIMEText(content)
    
msg['Subject'] = sub
    
msg['From'] = me
    
msg['To'] = ";".join(to_list)
    
try:
        
s = smtplib.SMTP()
        
s.connect(mail_host)
        
s.login(mail_user,mail_pass)
        
s.sendmail(me, to_list, msg.as_string())
        
s.close()
        
return True
    
except Exception, e:
        
print str(e)
        
return False
if __name__ == '__main__':
    
if send_mail(mailto_list,"subject","content"):
        
print "发送成功"
    
else:
        
print "发送失败"
原文地址:https://www.cnblogs.com/lexus/p/2373275.html