Skip to content

Latest commit

 

History

History
19 lines (14 loc) · 508 Bytes

setting-up-mailer.md

File metadata and controls

19 lines (14 loc) · 508 Bytes

Setting up mailer

Setup the following environment variables:

DEFAULT_FROM_EMAIL=purple@ciso-assistant.fr
EMAIL_HOST=localhost
EMAIL_PORT=1025
EMAIL_HOST_USER=purple
EMAIL_HOST_PASSWORD=dummy-unsafe-example
EMAIL_USE_TLS=True

Note: Docker Compose Environment Variables

When using Docker Compose, avoid spaces around the = sign in environment variable definitions. Spaces cause variables to be silently ignored.

Correct: MY_VARIABLE=value
Incorrect: MY_VARIABLE = value