2👍
Since you’re only using your phone when doing local development, maybe it is an option to not actually send the email, but just print it to the console.
To do that, put this in your settings:
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
It is documented here.
Source:stackexchange.com