[Answer]-How to explain django that my custom backend is inside of my app?

1👍

Exactly. If you have a myemailbackend.py in your myapp directory, the setting would be:

EMAIL_BACKEND = 'myapp.myemailbackend.MyEmailBackend'

Note that this assumes that you have added myapp to INSTALLED_APPS in your settings.py.

👤Selcuk

Leave a comment