From ea54764ae328dcde5dbd7b6405e1d467e15f2a5a Mon Sep 17 00:00:00 2001 From: Masonlet Date: Tue, 7 Jul 2026 22:41:18 -0400 Subject: [PATCH] fix: move .env.example from core to vercel --- .env.example | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..b5505e5 --- /dev/null +++ b/.env.example @@ -0,0 +1,18 @@ +# Shared email settings +FROM_EMAIL=email@yourdomain.com +TO_EMAIL=contact@yourdomain.com,other@yourdomain.com + +# CORS (comma-separated) +ALLOWED_ORIGINS=https://www.yourdomain.com,https://www.otherdomain.com + +# Multi-provider email config +# Choose a provider, then uncomment and fill in its variables. + +# resend +# EMAIL_PROVIDER=resend +# RESEND_API_KEY=re_xxxxxxxxxx # Resend API key + +# nodemailer +# EMAIL_PROVIDER=nodemailer +# SMTP_CONFIG={"host":"smtp.gmail.com","port":587,"secure":false,"auth":{"user":"your@gmail.com","pass":"app-password"}} +