服务器信息发送,发送服务器信息到邮箱

之前有写了一个自动登录各个服务器的python脚本,下面这个脚本可以配合那个脚本使用,用自动登录的脚本先取到各个服务器的信息,然后汇总到server_msg.txt中,再通过下面的邮件脚本发送的管理员的邮箱。。。我把它用到服务器上,是可行的。服务器OS rhel5.1

#!/usr/bin/env python2.4

# filename:email_sta.py

#coding=utf-8

import smtplib, mimetypes

from email.MIMEText import MIMEText

from email.MIMEMultipart import MIMEMultipart

from email.MIMEImage import MIMEImage

msg = MIMEMultipart()

msg['From'] = "severs"

msg['To'] = 'linuxsa'

msg['Subject'] = 'servers_status'

#添加邮件内容

txt = MIMEText("company server information")

msg.attach(txt)

#添加二进制附件

fileName = r'/App/alert/SH/server_msg.txt'

ctype, encoding = mimetypes.guess_type(fileName)

if ctype is None or encoding is not None:

ctype = 'application/octet-stream'

maintype, subtype = ctype.split('/', 1)

att1 = MIMEImage((lambda f: (f.read(), f.close()))(open(fileName, 'rb'))[0], _subtype = subtype)

att1.add_header('Content-Disposition', 'attachment', filename = fileName)

msg.attach(att1)

#发送邮件

smtp = smtplib.SMTP()

smtp.connect('smtp.163.com:25')

smtp.login('xxxx', '*****')

smtp.sendmail(, , msg.as_string())

smtp.quit()

print 'Mail sent successfully'

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值