all repos — donkey @ 46e3622fa1d06410dc029b65d47b17baaab5557e

The main backend for forlater.email

app/mail.py (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
from flask_mail import Message
from . import mail


def send_mail(to, replyto, subject, html, text):
    msg = Message(subject, sender="ForLater <forlater@monkagi.ga>", reply_to=replyto)
    msg.add_recipient(to)
    msg.html = html
    msg.body = text
    mail.send(msg)