Add config option notification_bcc for always attaching to notify emails.
[htsworkflow.git] / htsworkflow / frontend / experiments / views.py
index e2f6d884a4d63491922f88434f9e8c40cbb1972d..7b6d4bae40a8b5886d2796a16d267d28462a473f 100755 (executable)
@@ -103,6 +103,7 @@ def startedEmail(request, pk):
             email = EmailMessage(subject, body, sender, to=[user_email])
             if bcc_managers:
                 email.bcc = settings.MANAGERS
+            email.bcc.append(settings.NOTIFICATION_BCC)
             email.send()
 
         emails.append((user_email, subject, body, sending))