This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add this to your common app in a file called `backends.py` | |
from logging import getLogger | |
from django.core.mail.backends.filebased import EmailBackend as FBEmailBackend | |
from django.core.mail.backends.smtp import EmailBackend as SmtpEmailBackend | |
class LoggingFileBasedEmailBackend(FBEmailBackend): | |
"""A wrapper around ``filebased.EmailBackend`` that logs every email. |