You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This makes is so it does not use the DEFAULT_FROM_EMAIL in the env file when doing a Forgot Password. New Sign-up verification emails work just fine, but not Forgot Password emails.
from_email = from_email if from_email else settings.DEFAULT_FROM_EMAIL
By commenting out line 372 in the views.py, it works as it should for me, using the DEFAULT_FROM_EMAIL in the env file. Is there a different way I should have fixed this on my system? Is there a reason that's hardcoded?