This question is probably a duplicate question and regrets it.
I am using Django 1.4.1 , and on the production server I set DEBUG to False . Sometimes users get an exception and the server shows the 500.html template, but does not send the email configured in the ADMINS settings.py section.
The application sending the email is configured correctly, because during the registration process I can receive a welcome email.
A snippet of my settings.py :
DEBUG = False TEMPLATE_DEBUG = DEBUG ADMINS = ( ('example', ' example@example.com '),
source share