- Set the
GORILLA_EMAIL_SINKenvironment variable in the docker container or the kubernetes deployment tosmtp://<user:password>@smtp.host.com:<port> usernameandpasswordare optional- If you’re using an SMTP server that’s designed to be unauthenticated you would just set the value for the environment variable like
GORILLA_EMAIL_SINK=smtp://smtp.host.com:<port> - Commonly used port numbers for SMTP are ports 587, 465 and 25. Note that this might differ based on the type of the mail server you’re using.
- To configure the default sender email address for SMTP, which is initially set to
noreply@wandb.com, you can update it to an email address of your choice. This can be done by setting theGORILLA_EMAIL_FROM_ADDRESSenvironment variable on the server to your desired sender email address.