python获取本地IP地址发送邮件
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python获取本地IP地址发送邮件相关的知识,希望对你有一定的参考价值。
#!/usr/bin/env python
#_*_coding:utf-8 _*_
import time
import socket
import fcntl
import struct
import smtplib
from email.mime.text import MIMEText
def get_ip_add(ifname):
s=socket.socket(socket.AF_INET,socket.SOCK_DGRAM)
return socket.inet_ntoa(fcntl.ioctl(
s.fileno(),
0x8915,
struct.pack(‘256s‘,ifname[:15])
)[20:24])
def sendmail(subject,msg,fromemail,emailpasswd,toemail):
user=fromemail
pwd=emailpasswd
to=toemail
nowtime=time.strftime(‘%Y-%m-%d %H:%M:%S‘)
msg=MIMEText(msg)
msg["Subject"]=subject
msg["From"]=user
msg["To"]=to
try:
#s=smtplib.SMTP_SSL(‘smtp.qq.com‘,465)
s=smtplib.SMTP(‘smtp.126.com‘,25)#连接126服务端
s.login(user,pwd)
s.sendmail(user,to,msg.as_string())
s.quit()
print "[%s]INFO:Email send Success!"% nowtime
except smtplib.SMTPException,e:
print "[%s]ERROR:Email send Faild,%s"%(nowtime,e)
if __name__==‘__main__‘:
local_id=get_ip_add(‘em1‘)
print local_id
subject=‘服务器[%s]日志报警了!‘%local_id#可以根据实际定义
fromemail=‘[email protected]‘
emailpasswd=‘xxxxx‘##这里的密码是客户端的授权码,不是126的登录密码
toemail=‘[email protected]‘#发给谁
name_1="This is tesing"
sendmail(subject,name_1,fromemail,emailpasswd,toemail)#name_1可以根据实际的需求写对应的内容
本文出自 “DBSpace” 博客,请务必保留此出处http://dbspace.blog.51cto.com/6873717/1877807
以上是关于python获取本地IP地址发送邮件的主要内容,如果未能解决你的问题,请参考以下文章