Send email using 'smtplib'
This commit is contained in:
parent
e2806c89ed
commit
d56f065890
|
@ -17,6 +17,7 @@ import subprocess
|
||||||
import os
|
import os
|
||||||
import sys
|
import sys
|
||||||
import time
|
import time
|
||||||
|
import smtplib
|
||||||
|
|
||||||
#Check if your system use Python 3.x
|
#Check if your system use Python 3.x
|
||||||
if sys.version_info<(3,0):
|
if sys.version_info<(3,0):
|
||||||
|
@ -212,11 +213,19 @@ while PublicIP <= 2:
|
||||||
SendEmailOK = 1
|
SendEmailOK = 1
|
||||||
while SendEmailOK <= 2:
|
while SendEmailOK <= 2:
|
||||||
CurrentTime = time.strftime("%H:%M")
|
CurrentTime = time.strftime("%H:%M")
|
||||||
if os.name == "posix":
|
#Sending email using smtplib
|
||||||
ErrorSendEmail = os.system("sendEmail -q -f "+FromEmail+" -t "+ToEmail+" -u '[ip2e-daemon] ["+CurrentTime+"] IP has changed' -m '[ip2e] New IP is '"+NewIP+" -s "+SmtpFromEmail+" -xu "+FromEmailUser+" -xp "+FromEmailPass)
|
SmtpSubject = "[ip2e-daemon] ["+CurrentTime+"] IP has changed"
|
||||||
elif os.name == "nt":
|
SmtpHeader = "From: """+FromEmail+"\n"+"To: "+ToEmail+"\n"+"Subject: "+SmtpSubject+"\n"
|
||||||
ErrorSendEmail = os.system("sendEmail -q -f "+FromEmail+" -t "+ToEmail+" -u [ip2e-daemon] ["+CurrentTime+"] IP has changed -m [ip2e] New IP is "+NewIP+" -s "+SmtpFromEmail+" -xu "+FromEmailUser+" -xp "+FromEmailPass)
|
SmtpBodyMessage = SmtpHeader+"\n"+"[ip2e] New IP is "+NewIP+"\n\n"
|
||||||
if ErrorSendEmail == 0:
|
server = smtplib.SMTP(SmtpFromEmail)
|
||||||
|
server.ehlo()
|
||||||
|
server.starttls()
|
||||||
|
server.ehlo()
|
||||||
|
server.login(FromEmailUser,FromEmailPass)
|
||||||
|
#Check sending errors
|
||||||
|
try:
|
||||||
|
server.sendmail(FromEmail, ToEmail, SmtpBodyMessage)
|
||||||
|
server.quit()
|
||||||
CurrentTime = time.strftime("%H:%M")
|
CurrentTime = time.strftime("%H:%M")
|
||||||
MailMessage="[ip2e-daemon] ["+CurrentTime+"] Email was sent successfully"
|
MailMessage="[ip2e-daemon] ["+CurrentTime+"] Email was sent successfully"
|
||||||
if os.name == "posix":
|
if os.name == "posix":
|
||||||
|
@ -226,7 +235,7 @@ while PublicIP <= 2:
|
||||||
print (MailMessage+" ("+ToEmail+")")
|
print (MailMessage+" ("+ToEmail+")")
|
||||||
editlog.write(MailMessage+" to "+ToEmail+"\n")
|
editlog.write(MailMessage+" to "+ToEmail+"\n")
|
||||||
SendEmailOK += 2
|
SendEmailOK += 2
|
||||||
else:
|
except SMTPException:
|
||||||
CurrentTime = time.strftime("%H:%M")
|
CurrentTime = time.strftime("%H:%M")
|
||||||
MailMessage="[ip2e-daemon] ["+CurrentTime+"] Fail to send email"
|
MailMessage="[ip2e-daemon] ["+CurrentTime+"] Fail to send email"
|
||||||
if os.name == "posix":
|
if os.name == "posix":
|
||||||
|
|
Loading…
Reference in New Issue
Block a user