行宽 180 下把历史遗留的折行表达式合并,无语义改动。 Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
19 lines
558 B
Python
19 lines
558 B
Python
import logging
|
|
|
|
import dramatiq
|
|
|
|
from options.options import SysOptions
|
|
from utils.shortcuts import DRAMATIQ_WORKER_ARGS, send_email
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
@dramatiq.actor(**DRAMATIQ_WORKER_ARGS(max_retries=3))
|
|
def send_email_async(from_name, to_email, to_name, subject, content):
|
|
if not SysOptions.smtp_config:
|
|
return
|
|
try:
|
|
send_email(smtp_config=SysOptions.smtp_config, from_name=from_name, to_email=to_email, to_name=to_name, subject=subject, content=content)
|
|
except Exception as e:
|
|
logger.exception(e)
|