Newer
Older

Patrick Jentsch
committed
from flask import current_app, render_template
from .decorators import background
def create_message(recipient, subject, template, **kwargs):

Patrick Jentsch
committed
msg = Message('{} {}'.format(current_app.config['NOPAQUE_MAIL_SUBJECT_PREFIX'], subject), recipients=[recipient]) # noqa
msg.body = render_template('{}.txt.j2'.format(template), **kwargs)
msg.html = render_template('{}.html.j2'.format(template), **kwargs)
return msg