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:
commit
50ee66d200
1 changed files with 5 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue