mirror of
https://github.com/dat515-2025/Group-8.git
synced 2026-03-22 23:20:56 +01:00
7 lines
187 B
Python
7 lines
187 B
Python
import app.celery_app # noqa: F401
|
|
from app.workers.celery_tasks import send_email
|
|
|
|
|
|
def enqueue_email(to: str, subject: str, body: str) -> None:
|
|
send_email.delay(to, subject, body)
|