From 19e2707af496c459f51a6bbd334c35417082ac5d Mon Sep 17 00:00:00 2001 From: Adibov Date: Wed, 6 Dec 2023 19:40:06 +0330 Subject: [PATCH] fix(backend): change bcc to to when sending emails --- backend/backend_api/email.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/backend_api/email.py b/backend/backend_api/email.py index 07796d0..f16a312 100644 --- a/backend/backend_api/email.py +++ b/backend/backend_api/email.py @@ -27,7 +27,7 @@ def run(self): subject=self.subject, body=html_message, from_email=settings.EMAIL_HOST_USER, - bcc=self.targets, + to=self.targets, reply_to=(settings.EMAIL_HOST_USER,) ) email.content_subtype = "html"