1234567891011121314151617181920212223242526272829303132333435363738394041 |
- # -*- coding: utf-8 -*-
- """
- flaskbb.emails
- ~~~~~~~~~~~~~~~~~~~~
- This module adds the functionality to send emails
- :copyright: (c) 2014 by the FlaskBB Team.
- :license: BSD, see LICENSE for more details.
- """
- from flask import render_template
- from flask.ext.mail import Message
- from flaskbb.extensions import mail
- def send_reset_token(user, token):
- send_email(
- subject="Password Reset",
- recipients=[user.email],
- text_body=render_template(
- "email/reset_password.txt",
- user=user,
- token=token
- ),
- html_body=render_template(
- "email/reset_password.html",
- user=user,
- token=token
- )
- )
- def send_email(subject, recipients, text_body, html_body, sender=""):
- if not sender:
- msg = Message(subject, recipients=recipients)
- else:
- msg = Message(subject, recipients=recipients, sender=sender)
- msg.body = text_body
- msg.html = html_body
- mail.send(msg)
|