from exception_middleware import import StandardExceptionMiddleware, _get_traceback
from django.conf import settings
from django.core.mail import EmailMultiAlternatives
class HTMLMailExceptionMiddleware(StandardExceptionMiddleware):
def log_exception(self, request, exception, exc_info):
debug_response = self.debug_500_response(request, exception, exc_info)
subject, message = self.exception_email(request, exc_info)
msg = EmailMultiAlternatives(settings.EMAIL_SUBJECT_PREFIX + subject,
message,
settings.SERVER_EMAIL,
[a[1] for a in settings.ADMINS])
msg.attach_alternative(debug_response.content, 'text/html')
msg.send(fail_silently=True)
Comments
This behavior is more cleanly accomplished in middleware
We're working on a more general proposal to address this.
#
Ignore the above comment; the snippet has been changed to reflect that.
#
Howto use this middleware in your own project:
1. Download snippets 631 (this page) and 638.
2. Change the import line in the top of 631, so that 638 will be found, for example:
from myproject.middleware.638 import StandardExceptionMiddleware...
3. Add the middleware to myproject/settings.py:
MIDDLEWARE_CLASSES = ( myproject.middleware.631.HTMLMailExceptionMiddleware ... )
#
Would it be possible to send the "debug_response.content" as an attachment in the mail, instead of as part of the message?
#