Test sending email without email server

asawilliams picture asawilliams · Jan 9, 2011 · Viewed 50.2k times · Source

I have a Django application that sends an email. The production server has an email server but my local box does not. I would like to be able to test sending of email locally. Is there any way that I can have django not send it through the email server and just print out to a file or console?

Answer

Daniel Hepper picture Daniel Hepper · Jan 9, 2011

You can configure your application to use the Console Backend for sending e-mail. It writes e-mails to standard out instead of sending them.

Change your settings.py to include this line:

EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'

Don't forget to remove it for production.