-
Notifications
You must be signed in to change notification settings - Fork 3
/
sendmail.py
46 lines (36 loc) · 1.28 KB
/
sendmail.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
41
42
43
44
45
#!/usr/bin/env python3
import base64
import smtplib
import os
from email.mime.text import MIMEText
import notas_oauth
# para configurar desde afuera
COURSE = os.environ['NOTAS_COURSE_NAME']
ACCOUNT = os.environ['NOTAS_ACCOUNT']
template = """
Este es el link para consultar tus notas:
{enlace}
Nota: El enlace generado es único para tu padrón. No lo compartas con nadie (a menos
que quieras que otros puedan ver tus notas).
--
Recibiste este mensaje porque te inscribiste en el sistema de consulta de
notas de {curso}. Si no es así, te pedimos disculpas y por favor ingorá este mail.
"""
SendmailException = smtplib.SMTPException
def sendmail(fromname, toaddr, link):
msg = MIMEText(template.format(enlace=link, curso=COURSE),
_charset="utf-8")
msg["Subject"] = "Enlace para consultar las notas"
msg["From"] = "{} <{}>".format(fromname, ACCOUNT)
msg["To"] = toaddr
creds = notas_oauth.get_credenciales_email()
xoauth2_tok = "user={}\1" "auth=Bearer {}\1\1".format(
ACCOUNT, creds.access_token).encode("utf-8")
server = smtplib.SMTP('smtp.gmail.com', 587)
server.ehlo()
server.starttls()
server.ehlo()
server.docmd("AUTH", "XOAUTH2 " +
base64.b64encode(xoauth2_tok).decode("utf-8"))
server.sendmail(ACCOUNT, toaddr, msg.as_string())
server.close()