Closed benaissazaki closed 9 months ago
In the call to send_mail in accounts/forms.py, the from_email parameter was hardcoded as from@example.com.
send_mail
accounts/forms.py
from_email
from@example.com
I instead made it into a setting that can be defined as an environment variable.
In the call to
send_mail
inaccounts/forms.py
, thefrom_email
parameter was hardcoded asfrom@example.com
.I instead made it into a setting that can be defined as an environment variable.