django-orchestra/orchestra/utils/mail.py

43 lines
1.4 KiB
Python
Raw Normal View History

2015-04-02 16:14:55 +00:00
from urllib.parse import urlparse
2014-05-08 16:59:35 +00:00
from django.core.mail import EmailMultiAlternatives
from django.template.loader import render_to_string
from django.template import Context
def render_email_template(template, context):
2014-05-08 16:59:35 +00:00
"""
Renders an email template with this format:
{% if subject %}Subject{% endif %}
{% if message %}Email body{% endif %}
2014-09-04 15:55:43 +00:00
2014-05-08 16:59:35 +00:00
context can be a dictionary or a template.Context instance
"""
if isinstance(context, dict):
context = Context(context)
2014-09-04 15:55:43 +00:00
2014-05-08 16:59:35 +00:00
if not 'site' in context:
from orchestra import settings
url = urlparse(settings.ORCHESTRA_SITE_URL)
2014-05-08 16:59:35 +00:00
context['site'] = {
'name': settings.ORCHESTRA_SITE_NAME,
2014-05-08 16:59:35 +00:00
'scheme': url.scheme,
'domain': url.netloc,
}
2017-04-03 17:06:06 +00:00
context['email_part'] = 'subject'
subject = render_to_string(template, context).strip()
context['email_part'] = 'message'
message = render_to_string(template, context).strip()
return subject, message
def send_email_template(template, context, to, email_from=None, html=None, attachments=[]):
2015-05-30 14:44:05 +00:00
if isinstance(to, str):
to = [to]
subject, message = render_email_template(template, context)
2014-09-04 15:55:43 +00:00
msg = EmailMultiAlternatives(subject, message, email_from, to, attachments=attachments)
2014-05-08 16:59:35 +00:00
if html:
subject, html_message = render_email_template(html, context)
2014-05-08 16:59:35 +00:00
msg.attach_alternative(html_message, "text/html")
msg.send()