Changeset - 6fadca1773a2
[Not reviewed]
0 1 0
Christopher Neugebauer - 8 years ago 2016-09-07 02:01:34
chrisjrn@gmail.com
Removes BCC amendment to mail.py
1 file changed with 1 insertions and 2 deletions:
0 comments (0 inline, 0 general)
symposion/utils/mail.py
Show inline comments
...
 
@@ -24,8 +24,7 @@ def send_email(to, kind, **kwargs):
 
    message_plaintext = strip_tags(message_html)
 

	
 
    from_email = settings.DEFAULT_FROM_EMAIL
 
    bcc_email = settings.ENVELOPE_BCC_LIST
 

	
 
    email = EmailMultiAlternatives(subject, message_plaintext, from_email, to, bcc=bcc_email)
 
    email = EmailMultiAlternatives(subject, message_plaintext, from_email, to)
 
    email.attach_alternative(message_html, "text/html")
 
    email.send()
0 comments (0 inline, 0 general)