发布时间:2019-08-28 09:09:34编辑:auto阅读(2057)
!/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
51920
51679
42008
38846
33332
30309
28949
23958
23876
22244
344°
2568°
3241°
2698°
2676°
3407°
2643°
3476°
5706°
5509°