Update SMTP to Mailjet

This commit is contained in:
2025-12-12 10:45:32 +01:00
parent e170cefb5d
commit 597a43b589

View File

@@ -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"