all repos — donkey @ dc80dc1a0d50b02336a12040d4dd62baa2f20000

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@monkagi.ga", reply_to=replyto)
    msg.add_recipient(to)
    msg.html = html
    msg.body = text
    mail.send(msg)