1👍
✅
Your EMAIL_BACKEND
is incorrectly set, if you want to receive an actual email in your inbox. The django.core.mail.backends.console.EmailBackend
will only log the email to your console.
You need to setup a new email backend such as an SMTP backend.
Source:stackexchange.com