conference-website/emails/util.py

74 lines
2.4 KiB
Python

"""Utilities for rendering email templates."""
from typing import List, Tuple, Dict, Any
import logging
from django.conf import settings
from django.contrib.sites.shortcuts import get_current_site
from django.template import loader
from django.core.mail import get_connection, EmailMultiAlternatives
from conference_main.util import absolutify, absolute_url
logger = logging.getLogger(__name__)
logger.setLevel(logging.DEBUG)
def is_noreply(email: str) -> bool:
"""Return True if the email address is a no-reply address."""
return email.startswith('noreply@') or email.startswith('no-reply@')
def get_template_context() -> Dict[str, str]:
"""Return additional context for use in an email template."""
site_settings = get_current_site(None).settings
return {
'site_url': absolutify(''),
'edition': site_settings.current_edition,
'tickets_url': absolute_url('tickets:list'),
'profile_url': absolute_url('profile_update'),
'DEFAULT_REPLY_TO_EMAIL': settings.DEFAULT_REPLY_TO_EMAIL,
}
def construct_email(email_name: str, context: Dict[str, Any]) -> Tuple[str, str, str]:
"""Construct an email message.
:return: tuple (html, text, subject)
"""
base_path = 'emails'
subj_tmpl, html_tmpl, txt_tmpl = (
f'{base_path}/{email_name}_subject.txt',
f'{base_path}/{email_name}.html',
f'{base_path}/{email_name}.txt',
)
subject: str = loader.render_to_string(subj_tmpl, context)
context['subject'] = subject.strip()
email_body_html = loader.render_to_string(html_tmpl, context)
email_body_txt = loader.render_to_string(txt_tmpl, context)
return email_body_html, email_body_txt, context['subject']
def construct_and_send_email(
email_name: str, context: Dict[str, Any], recipient_list: List[str]
) -> int:
"""Construct an email message and send it.
:return: int
"""
email_body_html, email_body_txt, subject = construct_email(email_name, context)
connection = get_connection(fail_silently=False)
mail = EmailMultiAlternatives(
context['subject'],
email_body_txt,
from_email=None, # just use the configured default From-address.
to=recipient_list,
connection=connection,
reply_to=[settings.DEFAULT_REPLY_TO_EMAIL],
)
mail.attach_alternative(email_body_html, 'text/html')
return mail.send()