Open coleslaw481 opened 3 years ago
Recently we hit a limit on sending emails via SMTP:
smtplib.SMTPDataError: (550, b'5.4.5 Daily user sending quota exceeded. v7sm11267272pjk.37 - gsmtp')
Two problems with this:
The fix might be as simple as setting fail_silently to True in the config or might require a custom email backend that can handle send errors without causing the file system logger to stop.
fail_silently
True
Recently we hit a limit on sending emails via SMTP:
Two problems with this:
The fix might be as simple as setting
fail_silently
toTrue
in the config or might require a custom email backend that can handle send errors without causing the file system logger to stop.