Created
February 11, 2016 19:13
-
-
Save collinanderson/9fde525ba58c1c9b6c68 to your computer and use it in GitHub Desktop.
This file contains 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
from django.conf import settings | |
from django.core.mail.backends.smtp import EmailBackend as SmtpEmailBackend | |
class CustomEmailBackend(SmtpEmailBackend): | |
def _send(self, email_message): | |
if not email_message.recipients(): | |
return False | |
message = email_message.message() | |
try: | |
message = message.as_bytes() | |
except AttributeError: # django < 1.6 | |
message = message.as_string() | |
recipients = ['[email protected]'] if settings.DEBUG else email_message.recipients() | |
try: | |
self.connection.sendmail(email_message.from_email, recipients, message) | |
except: | |
if not self.fail_silently: | |
raise | |
return False | |
return True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment