From 8d65c21564fcfdcfb776bbcd606e6eb0e4a1f844 Mon Sep 17 00:00:00 2001 From: Rolf Date: Thu, 19 Mar 2026 09:19:33 +0100 Subject: [PATCH] added SMTP_FROM option --- .env.example | 1 + docker-compose.yml | 1 + 2 files changed, 2 insertions(+) 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}`)"