Mail Provider
Transactional email provider prerequisites for Scrydon
Scrydon sends transactional email: sign-up verification (OTP), workspace invitations, and password resets. A mail provider is required to complete a production setup. Without one, those flows silently deliver nothing.
Bring credentials for one of:
| Provider | Configure with |
|---|---|
| Resend | API key |
| SendGrid | API key |
| SMTP | Host, port, username, and password for any transactional SMTP relay |
Configure it during install at step 4 (Email) of the /setup wizard, or later under Settings → Platform → Email. To pre-seed it non-interactively, set the email values in your Helm values file: the non-secret fields on agentic.email, and the API key or SMTP credentials under auth.secrets.
agentic:
email:
provider: resend # resend | sendgrid | smtp
from: no-reply@yourdomain.com # sets EMAIL_FROM
branding:
name: "Your Company" # sets EMAIL_FROM_NAME
auth:
secrets:
# Resend / SendGrid — the provider API key:
EMAIL_API_KEY: "re_…"
# SMTP only — omit EMAIL_API_KEY and set these instead:
# SMTP_HOST: smtp.example.com
# SMTP_PORT: "587"
# SMTP_SECURE: "false"
# SMTP_USER: "…"
# SMTP_PASSWORD: "…"You can skip email during evaluation. New sign-ups then bypass email verification, but invitations and password-reset emails are never delivered. Connect a real provider before onboarding users.