mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 17:25:44 +00:00
23 lines
743 B
Python
23 lines
743 B
Python
from flask import current_app, render_template
|
|
from flask_mail import Message
|
|
from . import mail
|
|
from .decorators import background
|
|
|
|
|
|
def create_message(recipient, subject, template, **kwargs):
|
|
app = current_app._get_current_object()
|
|
sender = app.config['NOPAQUE_MAIL_SENDER']
|
|
subject_prefix = app.config['NOPAQUE_MAIL_SUBJECT_PREFIX']
|
|
msg = Message('{} {}'.format(subject_prefix, subject),
|
|
recipients=[recipient], sender=sender)
|
|
msg.body = render_template('{}.txt.j2'.format(template), **kwargs)
|
|
msg.html = render_template('{}.html.j2'.format(template), **kwargs)
|
|
return msg
|
|
|
|
|
|
@background
|
|
def send(msg, *args, **kwargs):
|
|
app = kwargs['app']
|
|
with app.app_context():
|
|
mail.send(msg)
|