debugging email with django
Submitted by benl on Wed, 04/27/2011 - 18:58
Related Terms :
an easy way to get django to send emails direct to stdout ( and avoid connection refused errors )
in settings.py:
EMAIL_HOST = 'localhost'
EMAIL_PORT = 1025and at a shell:
python -m smtpd -n -c DebuggingServer localhost:1025