发布时间:2019-08-28 09:09:34编辑:auto阅读(2064)
!/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
51946
51738
42038
38880
33370
30334
28977
23995
23911
22265
439°
2617°
3313°
2749°
2729°
3501°
2694°
3522°
5816°
5603°