From 6034c4f07b6cc83ea6168165836588f6c288f240 Mon Sep 17 00:00:00 2001 From: julien vdb Date: Mon, 4 May 2026 09:43:59 +0200 Subject: [PATCH] Use zeptomail in prod --- config/env/production/plugins.ts | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/config/env/production/plugins.ts b/config/env/production/plugins.ts index f5c979c..5ed2fed 100644 --- a/config/env/production/plugins.ts +++ b/config/env/production/plugins.ts @@ -3,17 +3,18 @@ export default () => ({ config: { provider: "nodemailer", providerOptions: { - host: "mail.harmonychoral.com", - port: 465, + host: "smtp.zeptomail.eu", + port: 587, auth: { - user: "admin@harmonychoral.com", - pass: "Apslxnap12bn23", + user: "emailapikey", + pass: "yA6KbHsJ4lrywWtTFUc+0pSC94lm/aE/2nzks3i2fpZ1LYXp3qE71RBvd4O4c2CLjdfT5a9UbIkVJoCwvIpbfpczPIBXJpTGTuv4P2uV48xh8ciEYNYjhJivALIWFqVOeBsnDyo4QfEjWA==", }, - // ... any custom nodemailer options + debug: true, + logger: true, }, settings: { - defaultFrom: "admin@harmonychoral.com", - defaultReplyTo: "admin@harmonychoral.com", + defaultFrom: "ChoralSync ", + defaultReplyTo: "contact@choralsync.com", }, }, },