Correcciones en wrapper_mysql y avance en metodos de explorer. Iniciado modulo de alertas.

This commit is contained in:
pablomartincalvo 2018-08-30 19:38:31 +02:00
parent e883f9031b
commit 5eedb037ed
6 changed files with 359 additions and 105 deletions

39
core/alerts.py Normal file
View file

@ -0,0 +1,39 @@
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import smtplib
my_adress = 'drogonalerts@gmail.com'
master_address = 'pablomartincalvo@gmail.com'
def alert_master(header, message):
#TODO Acabar la alerta de email
msg = MIMEMultipart()
message = "Thank you"
# setup the parameters of the message
password = "your_password"
msg['From'] = "your_address"
msg['To'] = "to_address"
msg['Subject'] = "Subscription"
# add in the message body
msg.attach(MIMEText(message, 'plain'))
# create server
server = smtplib.SMTP('smtp.gmail.com: 587')
server.starttls()
# Login Credentials for sending the mail
server.login(msg['From'], password)
# send the message via the server.
server.sendmail(msg['From'], msg['To'], msg.as_string())
server.quit()
print
"successfully sent email to %s:" % (msg['To'])