Skip to content
Snippets Groups Projects

strip whitespace from addresses

Merged Charlotte Hausman requested to merge 2.8.1.1_messaging_fixes into 2.8.1.1-Development
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -71,8 +71,8 @@ class NotificationService(NotificationServiceIF):
if isinstance(parameters["destination_email"], list):
receiver_emails = parameters["destination_email"]
else:
# sometimes the list gets passed in as a string, split it if needed
receiver_emails = parameters["destination_email"].split(",")
# sometimes the list gets passed in as a string, split it if needed and strip extra spaces
receiver_emails = [address.strip() for address in parameters["destination_email"].split(",")]
# Let's not send emails into the void
if not receiver_emails:
Loading