发布时间:2019-08-28 09:09:34编辑:auto阅读(1488)
!/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
47880
46449
37333
34773
29347
26008
24961
19978
19582
18075
5821°
6449°
5962°
5988°
7093°
5937°
5981°
6472°
6435°
7818°