all repos — donkey @ 2a98ded5cd847a031cc1e97ddb64aa452cb213b0

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)