39 lines
No EOL
908 B
Python
39 lines
No EOL
908 B
Python
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']) |