contentdb/app/tasks/emails.py

42 lines
1.3 KiB
Python
Raw Normal View History

2018-05-17 16:18:20 +02:00
# Content DB
# Copyright (C) 2018 rubenwardy
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
2019-01-04 20:17:04 +01:00
from flask import render_template
2018-05-14 01:40:34 +02:00
from flask_mail import Message
from app import mail
from app.tasks import celery
@celery.task()
def sendVerifyEmail(newEmail, token):
2018-12-25 21:25:17 +01:00
print("Sending verify email!")
2018-07-06 23:52:19 +02:00
msg = Message("Verify email address", recipients=[newEmail])
msg.body = "This is a verification email!"
msg.html = render_template("emails/verify.html", token=token)
mail.send(msg)
@celery.task()
def sendEmailRaw(to, subject, text, html):
from flask_mail import Message
msg = Message(subject, recipients=to)
2019-01-04 20:17:04 +01:00
2018-07-06 23:52:19 +02:00
if text:
msg.body = text
2019-01-04 20:17:04 +01:00
html = html or text
msg.html = render_template("emails/base.html", subject=subject, content=html)
2018-07-06 23:52:19 +02:00
mail.send(msg)