Merge branch 'chrisjrn/better_mailer' of https://github.com/lca2017/symposion into chrisjrn/better_mailer

Conflicts:
	symposion/utils/mail.py
This commit is contained in:
Scott Bragg 2016-09-18 12:40:45 +10:00
commit 50ee66d200

View file

@ -53,6 +53,11 @@ def __send_email__(template_prefix, to, kind, **kwargs):
from_email = settings.DEFAULT_FROM_EMAIL
try:
bcc_email = settings.ENVELOPE_BCC_LIST
except AttributeError:
bcc_email = None
try:
bcc_email = settings.ENVELOPE_BCC_LIST
except AttributeError: