-
Notifications
You must be signed in to change notification settings - Fork 0
/
notifier.py
26 lines (18 loc) · 860 Bytes
/
notifier.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import smtplib
from email.mime.text import MIMEText
import credentials
def notify(data, email):
host = 'smtp.gmail.com'
port = 465
username = credentials.login['username']
password = credentials.login['password']
from_addr = username
to_addrs = [email]
message = MIMEText('Identificamos um foco de incêndio em sua cidade nas seguintes localização (%s, %s), segundo dados obtidos via Nasa-FIRMS(Informações sobre incêndio para sistema de gerenciamento de recursos). \n\nEquipe Saci - Nasa Space Apps'% (data[0],data[1]))
message['subject'] = 'Atenção, %s (%s)' % (data[2],data[3])
message['from'] = from_addr
message['to'] = ', '.join(to_addrs)
server = smtplib.SMTP_SSL(host, port)
server.login(username, password)
server.sendmail(from_addr, to_addrs, message.as_string())
server.quit()