From 597a43b589ea37e07a039615e8c419c05acaa9e2 Mon Sep 17 00:00:00 2001 From: admin Date: Fri, 12 Dec 2025 10:45:32 +0100 Subject: [PATCH] Update SMTP to Mailjet --- supabase/deploy.sh | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/supabase/deploy.sh b/supabase/deploy.sh index fb34882..0affa4e 100644 --- a/supabase/deploy.sh +++ b/supabase/deploy.sh @@ -111,13 +111,14 @@ ENABLE_PHONE_SIGNUP=false ENABLE_PHONE_AUTOCONFIRM=false ############################################################ -# SMTP (configure with Resend API key) +# SMTP (configure with Mailjet API keys) +# Get keys from: https://app.mailjet.com/account/apikeys ############################################################ SMTP_ADMIN_EMAIL=admin@mylder.io -SMTP_HOST=smtp.resend.com +SMTP_HOST=in-v3.mailjet.com SMTP_PORT=587 -SMTP_USER=resend -SMTP_PASS=REPLACE_WITH_RESEND_API_KEY +SMTP_USER=REPLACE_WITH_MAILJET_API_KEY +SMTP_PASS=REPLACE_WITH_MAILJET_SECRET_KEY SMTP_SENDER_NAME=Mylder MAILER_URLPATHS_INVITE=/auth/v1/verify @@ -187,5 +188,5 @@ echo -e "${YELLOW}IMPORTANT: Save these credentials securely!${NC}" echo "" echo "Next steps:" echo "1. Add DNS A record for supabase.mylder.io pointing to this server" -echo "2. Configure SMTP (replace SMTP_PASS in .env with Resend API key)" +echo "2. Configure SMTP (replace SMTP_USER/SMTP_PASS in .env with Mailjet API keys)" echo "3. Access Studio and create your database schema"