diff --git a/.env.example b/.env.example index 2e2e718..6883a1b 100644 --- a/.env.example +++ b/.env.example @@ -23,4 +23,5 @@ SMTP_HOST=smtp.example.com SMTP_PORT=587 SMTP_USER=your-smtp-user SMTP_PASS=your-smtp-password +SMTP_FROM=noreply@example.com SMTP_SENDER_NAME=MulliganMates diff --git a/docker-compose.yml b/docker-compose.yml index 9ee157a..bb10bc9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,6 +19,7 @@ services: SMTP_USER: ${SMTP_USER:-} SMTP_PASS: ${SMTP_PASS:-} SMTP_SENDER_NAME: ${SMTP_SENDER_NAME:-MulliganMates} + SMTP_FROM: ${SMTP_FROM} labels: - "traefik.enable=true" - "traefik.http.routers.mulliganmates.rule=Host(`${APP_DOMAIN}`)"