Python/django Smtp Debugserver Doesn't Catch Emails
I'm starting the server (on mac) this way: python -m smtpd -n -c DebuggingServer localhost:9999 and i don't get any errors or any other notifications. I guess it means all is ok,
Solution 1:
I think you need to use the default smtp backend
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
Post a Comment for "Python/django Smtp Debugserver Doesn't Catch Emails"