all repos — donkey @ dc80dc1a0d50b02336a12040d4dd62baa2f20000

The main backend for forlater.email

app/mail.py (view raw)

 1from flask_mail import Message
 2from . import mail
 3
 4
 5def send_mail(to, replyto, subject, html, text):
 6    msg = Message(subject, sender="forlater@monkagi.ga", reply_to=replyto)
 7    msg.add_recipient(to)
 8    msg.html = html
 9    msg.body = text
10    mail.send(msg)