From 4f4d0dd42eae57d3f129ab9d1b7fe05f483a01ff Mon Sep 17 00:00:00 2001 From: Matt Date: Mon, 26 Jan 2026 11:24:20 +0100 Subject: [PATCH] Fix .env.example: quote SMTP_SENDER_NAME value Values with spaces must be quoted for bash source command Co-Authored-By: Claude Opus 4.5 --- deploy/.env.example | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deploy/.env.example b/deploy/.env.example index 69dde4f..7c27b4e 100644 --- a/deploy/.env.example +++ b/deploy/.env.example @@ -64,7 +64,7 @@ SMTP_PORT=587 SMTP_USER= SMTP_PASS= SMTP_ADMIN_EMAIL=noreply@monacousa.org -SMTP_SENDER_NAME=Monaco USA +SMTP_SENDER_NAME="Monaco USA" # Set to true to auto-confirm emails (not recommended for production) ENABLE_EMAIL_AUTOCONFIRM=false