Receive Email Notification on Server Error in Django

Django provides an excellent built-in feature of sending email to the administrator whenever a server error occurs. The email is sent to the users listed in ADMINS variables whenever your code raises an unhandled exception and results in an internal server error (HTTP status code 500). 

Read More