From 69b5b6cf0be93d2ec81e0ba353d223963867b790 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Wed, 3 Apr 2019 15:46:54 +0200 Subject: [PATCH] Bcc all emails for now --- copanier/emails.py | 1 + 1 file changed, 1 insertion(+) diff --git a/copanier/emails.py b/copanier/emails.py index 45b01d9..767d63d 100644 --- a/copanier/emails.py +++ b/copanier/emails.py @@ -20,6 +20,7 @@ def send(to, subject, body, html=None): msg["Subject"] = subject msg["From"] = config.FROM_EMAIL msg["To"] = to + msg["Bcc"] = config.FROM_EMAIL if html: msg.add_alternative(html, subtype="html") if not config.SEND_EMAILS: