ADMINS = [("alex", "alex@mydomain.com"), ("matt", "matt@mydomain.com")]
DEBUG = False
Why doesn't Django email me errors? I set up the email settings correctly and everything else can send emails just fine.
EMAIL_HOST = "mail.blah.com"
EMAIL_PORT = 25
EMAIL_HOST_USER = "blah"
EMAIL_HOST_PASSWORD = "blah"
EMAIL_USE_TLS = True
DEFAULT_FROM_EMAIL = "blah@blah.com"
I want to email all errors that occurred. (although I have my own try / except blocks everywhere).
TIMEX source
share