2
According to the documentation, Django will only send broken link emails when DEBUG=False
and BrokenLinkEmailsMiddleware
appears before other middleware that intercepts 404 errors. So ensure that django.middleware.common.BrokenLinkEmailsMiddleware
is first in your MIDDLEWARE_CLASSES
tuple. If you have both of those settings correct, ensure that you can send an email using Django’s mail_managers
function (https://docs.djangoproject.com/en/1.7/topics/email/#mail-managers) via the Django shell.
Source:stackexchange.com