Django Error reporting with Custom send_email

614 Views Asked by At

I kindly need your help to make django error reports by email.

I use service account with Gmail API to authorize and send emails.

How can this work with default django error reporting send_email.

I know I have to add the below to the settings and debug must be false:

ADMINS, MANAGERS, SERVER_EMAIL

2

There are 2 best solutions below

1
On BEST ANSWER

I finally managed to send without setting up backend email.

  1. I setup the handlers in settings.
  2. Created CustomAdminHandler.py and override send_mail with my own sending email function.

Never thought its that simple.

1
On

Set up a email handling backend (see https://docs.djangoproject.com/en/3.1/topics/email/#smtp-backend for a SMTP email, or https://github.com/dolfim/django-gmailapi-backend/blob/master/gmailapi_backend/mail.py for an example of configuring the Gmail API as an EmailBackend).

Then set up an AdminEmailHandler (https://docs.djangoproject.com/en/3.1/topics/logging/#django.utils.log.AdminEmailHandler) to log error messages using the EmailBackend you set up.