Closed timobrembeck closed 1 year ago
The EMAIL_HOST_USER is the username when logging into the SMTP server and is not necessarily an email address.
EMAIL_HOST_USER
The docs say:
from_email: The sender’s address. Both fred@example.com and "Fred" fred@example.com forms are legal. If omitted, the DEFAULT_FROM_EMAIL setting is used.
And this value is set to SERVER_EMAIL in the settings file: https://github.com/digitalfabrik/leeway/blob/b8858246a469f7cde8571ed65ced7946e67ee04f/opendrift_leeway_webgui/core/settings.py#L209
SERVER_EMAIL
The
EMAIL_HOST_USER
is the username when logging into the SMTP server and is not necessarily an email address.The docs say:
And this value is set to
SERVER_EMAIL
in the settings file: https://github.com/digitalfabrik/leeway/blob/b8858246a469f7cde8571ed65ced7946e67ee04f/opendrift_leeway_webgui/core/settings.py#L209