forked from RemMeds/script_raspberry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMail.py
40 lines (29 loc) · 1.18 KB
/
Mail.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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# import necessary packages
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText
import smtplib
# create message object instance
msg = MIMEMultipart()
message = "Bonjour Monsieur/Madame X, \n\n" \
"Je me dois de vous prévenir que vous n'avez pas pris le bon médicament. \n" \
"Je ne suis pas sur que le fait de prendre une deuxieme fois le médicament pour la tension \n" \
"en moins de deux heures soit une bonne idée...\n" \
"Bon courage pour la suite :)\n\n" \
"Bien cordialement, \n" \
"Ton pilulier\n" #le corps du message
# setup the parameters of the message
password = "@azerty$"
msg['From'] = "[email protected]"
msg['To'] = "[email protected]"
msg['Subject'] = "Rappel !" # L'objet du mail
# add in the message body
msg.attach(MIMEText(message, 'plain'))
# create server
server = smtplib.SMTP('smtp-mail.outlook.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']))