Skip to content

Commit

Permalink
Make destinations a list
Browse files Browse the repository at this point in the history
  • Loading branch information
meln1k committed Mar 7, 2024
1 parent 0081ab2 commit 415bebf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fixbackend/notification/email/email_sender.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def send_email() -> None:

self.ses.send_raw_email(
Source="[email protected]",
Destinations=to,
Destinations=[to],
RawMessage={"Data": msg.as_string().encode("utf-8")},
)

Expand Down

0 comments on commit 415bebf

Please sign in to comment.