[Django]-How can I send a reset password email on Django?

6👍

This setting

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

tells django to send the message to your terminal. To actually send an email, you need to use

EMAIL_BACKEND = "django.core.mail.backends.smtp.EmailBackend"

This is described in the Django Docs.

Leave a comment