Skip to content

Commit

Permalink
🐛 Fix email payload type
Browse files Browse the repository at this point in the history
  • Loading branch information
otytlandsvik committed Jan 31, 2024
1 parent 4f2b5fb commit 77d9ecb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/utils/event_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def send_emails(mailing_list, subject, content):
"""
for address in mailing_list:
email = MailPayload(
to=address,
to=[address],
subject=subject,
content=content
)
Expand Down

0 comments on commit 77d9ecb

Please sign in to comment.