python 郵件通知程式

來源:互聯網
上載者:User

標籤:python   mail   python mail   

#!/usr/bin/env python# -*- coding: utf-8 -*-import sysreload(sys)from email.MIMEText import MIMETextimport smtplibsys.setdefaultencoding(‘utf-8‘)import socket, fcntl, structdef send_mail(to_list,sub,content): mail_host="smtp.163.com" mail_user="[email protected]" mail_pass="XXXXXXX" mail_postfix="163.com" me=mail_user+"<"+mail_user+"@"+mail_postfix+">" msg = MIMEText(content) msg[‘Subject‘] = sub msg[‘From‘] = me msg[‘To‘] = 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 Falsedef get_local_ip(ifname = ‘eth0‘): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) inet = fcntl.ioctl(s.fileno(), 0x8915, struct.pack(‘256s‘, ifname[:15])) ret = socket.inet_ntoa(inet[20:24]) return retif sys.argv[1]!="master" and sys.argv[1]!="backup" and sys.argv[1]!="fault": sys.exit()else: notify_type = sys.argv[1]if __name__ == ‘__main__‘: strcontent = get_local_ip()+ " " +notify_type+" State is activated, please make sure the HAProxy service running state!" mailto_list = [‘[email protected], ]for mailto in mailto_list: send_mail(mailto, "HAProxy State switch alarm", strcontent.encode(‘utf-8‘))

 

參考南非螞蟻《高效能Linux伺服器構建實戰》

本文出自 “李惟忠的技術部落格” 部落格,請務必保留此出處http://liweizhong.blog.51cto.com/1383716/1639917

python 郵件通知程式

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.