Skip to content

mail#

send_mail#

Send an email with METAX_EMAIL_SENDER as the sender.

Source code in src/apps/common/mail.py
def send_mail(subject: str, body: str, recipients: List[str], reply_to: str = None) -> int:
    """Send an email with METAX_EMAIL_SENDER as the sender."""
    email = EmailMessage(
        subject=subject,
        body=body,
        to=recipients,
        from_email=settings.METAX_EMAIL_SENDER,
        reply_to=[reply_to],
    )
    email.send()