I have a Django app running on a server with uWSGI and nginx.
In my `local_settings.py` file I have this:
###############
# EMAIL SETUP #
###############
EMAIL_HOST_PASSWORD = 'MY EMAIL PASSWORD'
EMAIL_PORT = 465
EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_USE_TLS = True
########################
# OTHER EMAIL SETTINGS #
########################
DEFAULT_FROM_EMAIL = ADMIN_EMAIL
SERVER_EMAIL = ADMIN_EMAIL
I run `python manage.py runserver` on my local machine in the Django project's virtual environment. I fill out the password reset form at `password_rest/` using the email `
my.pe...@gmail.com` and submit it. I get this error.
My website's email provider is Namecheap.
Why do I get this error when testing on my local machine? What must I change/add to get rid of it?