2024-08-04 22:00:07 -07:00
|
|
|
from flask_mail import Message
|
|
|
|
|
from app import mail
|
|
|
|
|
|
|
|
|
|
def send_email(subject, sender, recipients, text_body, html_body):
|
|
|
|
|
msg = Message(subject, sender=sender, recipients=recipients)
|
|
|
|
|
msg.body = text_body
|
|
|
|
|
msg.html = html_body
|
|
|
|
|
mail.send(msg)
|
|
|
|
|
|