I'm getting SMTPAuthenticationError at /rest-auth/password/reset/
error.
I'm using all-auth-rest and set these on settings.py
EMAIL_USE_TLS = True
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_HOST_USER = 'randomemail@gmail.com'
EMAIL_PORT = 25 # or 587
EMAIL_HOST_PASSWORD = 'mypassword'
Also I enabled Displaying an Unlock Captcha
and allowed less secure app access
What is missing?
Thanks