Skip to content

Commit

Permalink
Merge pull request #10 from kainord/fix/return-value-of-django-email-…
Browse files Browse the repository at this point in the history
…backend

Use of return value from django email backend
  • Loading branch information
GitRon authored Oct 26, 2023
2 parents 6e357ca + 0e95176 commit 310505a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ambient_toolbox/mail/backends/whitelist_smtp.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,4 +74,4 @@ def send_messages(self, email_messages):
Uses regular smtp-sending afterwards.
"""
email_messages = self._process_recipients(email_messages)
super().send_messages(email_messages)
return super().send_messages(email_messages)

0 comments on commit 310505a

Please sign in to comment.