发布时间:2019-08-28 09:09:34编辑:auto阅读(1733)
!/usr/bin/python
coding: utf-8
import smtplib
import sys
from email.mime.text import MIMEText
_user = "12345678@qq.com"
_pwd = "授权码"
_to = "123456789@163.com"
def send_mail(to,subject,contain):
msg = MIMEText(contain)
msg["Subject"] = subject
msg["From"] = _user
msg["To"] = to
try:
s = smtplib.SMTP_SSL("smtp.qq.com", 465)
s.login(_user, _pwd)
s.sendmail(_user, to, msg.as_string())
s.quit()
with open('/tmp/zabbix.log', 'w') as f:
f.write("%s\n%s\n%s\n"%(to,subject,contain))
print "Success!"
except smtplib.SMTPException,e:
print "Falied,%s"%e
if name == "main":
send_mail(sys.argv[1], sys.argv[2], sys.argv[3])
上一篇: CentOS 6升级默认python版本
下一篇: python os, os.path和s
48881
47957
38733
35872
30297
27057
26081
20915
20725
19088
542°
627°
631°
636°
606°
587°
663°
729°
852°
973°