Django not sending emails to admins

PythonDjango

Python Problem Overview


According to the documentation, if DEBUG is set to False and something is provided under the ADMINS setting, Django will send an email whenever the code raises a 500 status code. I have the email settings filled out properly (as I can use send_mail fine) but whenever I intentionally put up erroneous code I get my 500.html template but no error email is sent. What could cause Django to not do this?

Python Solutions


Solution 1 - Python

In my case the cause was missing SERVER_EMAIL setting.

The default for SERVER_EMAIL is root@localhost. But many of email servers including my email provider do not accept emails from such suspicious addresses. They silently drop the emails.

Changing the sender email address to [email protected] solved the problem. In settings.py:

SERVER_EMAIL = '[email protected]'

Solution 2 - Python

Another possibility for error is trouble with your ADMINS setting. The following setting will cause the sending of mail to admins to fail quietly:

ADMINS = (
  ('your name', '[email protected]')
)

What's wrong with that? Well ADMINS needs to be a tuple of tuples, so the above needs to be formatted as

ADMINS = (
  ('your name', '[email protected]'),
)

Note the trailing comma. Without the failing comma, the 'to' address on the email will be incorrectly formatted (and then probably discarded silently by your SMTP server).

Solution 3 - Python

I had the same situation. I created a new project and app and it worked, so I knew it was my code. I tracked it down to the LOGGING dictionary in settings.py. I had made some changes a few weeks back for logging with Sentry, but for some reason the error just started today. I changed back to the original and got it working:

LOGGING = {
    'version': 1,
    'disable_existing_loggers': False,
    'handlers': {
        'mail_admins': {
            'level': 'ERROR',
            'class': 'django.utils.log.AdminEmailHandler'
        }
    },
    'loggers': {
        'django.request': {
            'handlers': ['mail_admins'],
            'level': 'ERROR',
            'propagate': True,
        },
    }
}

Then, I made some changes slowly and got it working with Sentry and emailing the ADMINS as well.

Additionally, the LOGGING configuration gets merged with DEFAULT_LOGGING by default, so it's useful to have a look at the source code of django.utils.log.DEFAULT_LOGGING to understand what else may have an effect on your particular situation.

Solution 4 - Python

Make sure your EMAIL_HOST and EMAIL_PORT are set up right in settings.py (these refer to your SMTP server). It might be assuming that you have an SMTP server running on localhost.

To test this locally, run Python's built-in test SMTP server:

python -m smtpd -n -c DebuggingServer localhost:1025

Then set these values in your settings.py

EMAIL_HOST='localhost'
EMAIL_PORT=1025

Trigger a 500 error, and you should see the e-mail appear in the python smtpd terminal window.

Solution 5 - Python

My web hosting provider - Webfaction - only allows emails to be sent From an email that has been explicitly created in the administrator panel. Creating one fixed the problem.

Solution 6 - Python

Another thing worth noting here is that settings handler500 might bypass the mechanism that sends errors on a 500 if the response from the view doesn't have a status code of 500. If you have a handler500 set, then in that view respond with something like this.

t = loader.get_template('500.html')
response = HttpResponseServerError(
    t.render(RequestContext(request, {'custom_context_var': 
        'IT BROKE OMG FIRE EVERYONE'})))
response.status_code = 500
return response

Solution 7 - Python

Sorry if it is too naive, but in my case the emails were sent but were going directly to the SPAM folder. Before trying more complicated things check your SPAM folder first.

Solution 8 - Python

Try this

# ./manage shell
>>> from django.core.mail import send_mail
>>> send_mail('Subject here', 'Here is the message.', '[email protected]',['[email protected]'], fail_silently=False)

With a [email protected] that you actually get email at.

Solution 9 - Python

If, for some reason, you set DEBUG_PROPAGATE_EXCEPTIONS to True (it's False by default), email to admin will not work.

Solution 10 - Python

Just had the same issue after upgraded to Django 2.1 from Django 1.11. Apparently the ADMINS sections in settings.py has a change. It takes a list of tuples now, rather than the old tuple of tuples. This fixed for me.

##### old #####
ADMINS = (
    ("Your Name", "[email protected]")
)

##### new #####
ADMINS = [
    ("Your Name", "[email protected]")
]

Re: https://docs.djangoproject.com/en/2.1/ref/settings/#admins

Solution 11 - Python

Make sure you have DEBUG = False

Solution 12 - Python

This problem annoyed me sufficiently to motivate a post. I provide here the steps I took to resolve this problem (cutting a long story short):

  1. Set-up test page to fail (by re-naming test_template.html)
  2. Check email validations through views for test page in production using send_mail('Hello', 'hello, world', '[email protected]', [('Name', '[email protected]'),], fail_silently=False) where SERVER_EMAIL = '[email protected]' and ADMINS = [('Name', '[email protected]'),] in Django settings. In my case, I received the 'hello world' email, but not the Django admin email (which was a pain).
  3. Set-up a simple custom logger to report to a file on the server:
LOGGING = {
  'version': 1,
  'disable_existing_loggers': False,
  'handlers': {
    'errors_file': {
      'level': 'ERROR',
      'class': 'logging.FileHandler',
      'filename': 'logs/debug.log',
    },
  },
  'loggers': {
    'django': {
      'handlers': ['errors_file'],
      'level': 'ERROR',
      'propagate': True,
    },
  },
}

In my case, navigating to the test page did not generate output in the debug.log file under the logs directory from my project root directory. This indicates that the logger was failing to reach an ERROR 'level'.

  1. Downgrade the threshold for reporting for the custom logger from ERROR to DEBUG. Now, navigating to the test page should deliver some detail. Inspecting this detail revealed in my case that the default 500 page was re-directed (inadvertedly) to an alternative template file called 500.html. This template file made use of a variable for caching, and as the template was not being called through a view that made the variable available in the context, the cache call failed with a missing key reference. Re-naming 500.html solved my problem.

Solution 13 - Python

Although it's been a while, here's my response, so that other people can benefit in the future.

In my case, what was preventing emails to be sent to the ADMINS list, when an error occured, was an application specific setting. I was using django-piston, which provides the setting attributes PISTON_EMAIL_ERRORS and PISTON_DISPLAY_ERRORS. Setting these accordingly, enabled the application server to notify my by mail, whenever piston would crash.

Solution 14 - Python

... and then there's the facepalm error, when you've used this in development to prevent emails from going out, and then accidentally copy the setting to production:

# Print emails to console
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'

(of course you don't see them being printed to console when using a wsgi server). Removing the setting from production fixed this for me.

Solution 15 - Python

And yet another thing that can go wrong (I'll just add it to the list, for those people that end up here despite all the great answers above):

Our django setup used SendGrid as the smtp host and had a single admin email-address defined in the django settings. This worked fine for some time, but at some point, mails stopped arriving.

As it turns out, the mail address ended up in the SendGrid 'Bounced' list for some unknown reason, causing emails to that address to be silently dropped forever after. Removing the address from that list, and whitelisting it, fixed the issue.

Solution 16 - Python

If you are using or would want to use SendGrid, use the settings below in production.

Install the package

pip install sendgrid-django

Add these settings in settings.py(production)

DEBUG = False

EMAIL_BACKEND = "sendgrid_backend.SendgridBackend"

SENDGRID_API_KEY = "That you generate in sendgrid account"

ADMINS = (
    ("Your Name", "[email protected]")
)

Solution 17 - Python

While likely not ideal, I have found using Gmail as the SMTP host works just fine. There is a useful guide at nathanostgard.com.

Feel free to post your relevant settings.py sections (including EMAIL_*, SERVER_EMAIL, ADMINS (just take out your real email), MANAGERS, and DEBUG) if you want an extra set of eyes to check for typos!

Solution 18 - Python

For what it's worth I had this issue and none of these suggestions worked for me. It turns out that my problem was that SERVER_EMAIL was set to an address that the server (Webfaction) didn't recognise. If this site were hosted on Webfaction (as my other sites are), this wouldn't be a problem, but as this was on a different server, the Webfaction servers not only check the authentication of the email being sent, but also the From: value as well.

Solution 19 - Python

In my case, it's the include_html in mail_admins.

When I set include_html to True,the email server reject to send my email because it think that my emails are spam.

Everything works just fine when I set include_html to False.

Solution 20 - Python

The below info is given in https://docs.djangoproject.com/en/2.1/howto/error-reporting/#email-reports

EMAIL_HOST = "email host"

EMAIL_HOST_USER = "Email username"

EMAIL_HOST_PASSWORD = "Email Password"

DEBUG = False

ADMINS = (
    ("Your Name", "[email protected]")
)

> In order to send email, Django requires a few settings telling it how > to connect to your mail server. At the very least, you’ll need to > specify EMAIL_HOST and possibly EMAIL_HOST_USER and > EMAIL_HOST_PASSWORD, though other settings may be also required > depending on your mail server’s configuration. Consult the Django > settings documentation for a full list of email-related settings.

Solution 21 - Python

I had the same problem and it turned out the mail server did not have the domain name of the email address. I was trying to send from a registered one (it was a new site for a different part of the business). I used an email address that was already valid under the old domain in SERVER_EMAIL. That resolved my issue.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionJoseVegaView Question on Stackoverflow
Solution 1 - PythongeekQView Answer on Stackoverflow
Solution 2 - PythonwxgeorgeView Answer on Stackoverflow
Solution 3 - PythonFurbeenatorView Answer on Stackoverflow
Solution 4 - PythonCathalView Answer on Stackoverflow
Solution 5 - PythonJoseVegaView Answer on Stackoverflow
Solution 6 - PythonoliversealView Answer on Stackoverflow
Solution 7 - PythonMiquelView Answer on Stackoverflow
Solution 8 - PythonPaul TarjanView Answer on Stackoverflow
Solution 9 - PythonDominique PerettiView Answer on Stackoverflow
Solution 10 - PythonClick2DeathView Answer on Stackoverflow
Solution 11 - PythonTim BabychView Answer on Stackoverflow
Solution 12 - PythonjvandevenView Answer on Stackoverflow
Solution 13 - PythonCharalambos PaschalidesView Answer on Stackoverflow
Solution 14 - PythonshackerView Answer on Stackoverflow
Solution 15 - PythondjvgView Answer on Stackoverflow
Solution 16 - PythonSuperNovaView Answer on Stackoverflow
Solution 17 - PythonJohn PaulettView Answer on Stackoverflow
Solution 18 - PythonDaniel QuinnView Answer on Stackoverflow
Solution 19 - PythonshellbyeView Answer on Stackoverflow
Solution 20 - PythonSuperNovaView Answer on Stackoverflow
Solution 21 - PythonIMCSAMView Answer on Stackoverflow