+8








d186daa131
Signed-off-by: -LAN- <[email protected]> Co-authored-by: Hash Brown <[email protected]> Co-authored-by: crazywoola <[email protected]> Co-authored-by: GareArc <[email protected]> Co-authored-by: Byron.wang <[email protected]> Co-authored-by: Joel <[email protected]> Co-authored-by: -LAN- <[email protected]> Co-authored-by: Garfield Dai <[email protected]> Co-authored-by: KVOJJJin <[email protected]> Co-authored-by: Alexi.F <[email protected]> Co-authored-by: Xiyuan Chen <[email protected]> Co-authored-by: kautsar_masuara <[email protected]> Co-authored-by: achmad-kautsar <[email protected]> Co-authored-by: Xin Zhang <[email protected]> Co-authored-by: kelvintsim <[email protected]> Co-authored-by: zxhlyh <[email protected]> Co-authored-by: Zixuan Cheng <[email protected]>
34 lines
1021 B
Python
34 lines
1021 B
Python
import logging
|
|
import time
|
|
|
|
import click
|
|
from celery import shared_task # type: ignore
|
|
from flask import render_template_string
|
|
|
|
from extensions.ext_mail import mail
|
|
|
|
|
|
@shared_task(queue="mail")
|
|
def send_enterprise_email_task(to, subject, body, substitutions):
|
|
if not mail.is_inited():
|
|
return
|
|
|
|
logging.info(click.style("Start enterprise mail to {} with subject {}".format(to, subject), fg="green"))
|
|
start_at = time.perf_counter()
|
|
|
|
try:
|
|
html_content = render_template_string(body, **substitutions)
|
|
|
|
if isinstance(to, list):
|
|
for t in to:
|
|
mail.send(to=t, subject=subject, html=html_content)
|
|
else:
|
|
mail.send(to=to, subject=subject, html=html_content)
|
|
|
|
end_at = time.perf_counter()
|
|
logging.info(
|
|
click.style("Send enterprise mail to {} succeeded: latency: {}".format(to, end_at - start_at), fg="green")
|
|
)
|
|
except Exception:
|
|
logging.exception("Send enterprise mail to {} failed".format(to))
|