Skip to content

Commit

Permalink
fix(backend): change bcc to to when sending emails
Browse files Browse the repository at this point in the history
  • Loading branch information
Adibov committed Dec 6, 2023
1 parent d8aba5b commit 19e2707
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/backend_api/email.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 19e2707

Please sign in to comment.