fix(mail): harden mailer and fix missing notification recipients
Some checks failed
Build & Deploy / 🧪 QA (push) Failing after 1m24s
Build & Deploy / 🔍 Prepare (push) Successful in 16s
Build & Deploy / 🏗️ Build (push) Has been skipped
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🧪 Post-Deploy Verification (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 4s

This commit is contained in:
2026-04-10 12:58:04 +02:00
parent 1a5dfc96c1
commit 18556c818d
4 changed files with 53 additions and 14 deletions

View File

@@ -42,7 +42,7 @@ const envExtension = {
MAIL_USERNAME: z.string().optional(),
MAIL_PASSWORD: z.string().optional(),
MAIL_FROM: z.string().optional(),
MAIL_RECIPIENTS: z.string().optional(),
MAIL_RECIPIENTS: z.string().trim().optional(),
};
/**