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"