Platform
Your own sending account
Send through your own Amazon SES or Mailgun instead of rootmail's.
rootmail can deliver your mail, or you can keep the provider you already use. Connect your own account and messages send on your credentials, your IPs and your reputation — rootmail stays the layer above it: per-client domains, per-client reputation scoring, suppression, threading and proof.
This is usually the right choice if you already send email at any scale. Your deliverability history is an asset; there is no reason to start a new one.
/v1/sending-provider/v1/sending-provider/v1/sending-provider// Amazon SES — the key needs ses:SendEmail and ses:GetAccount.
await mail.sendingProvider.connect({
provider: "ses",
access_key_id: "AKIA…",
secret_access_key: "…",
region: "us-east-1",
});
// Or Mailgun — the domain must already be verified there.
await mail.sendingProvider.connect({
provider: "mailgun",
api_key: "…",
domain: "mg.yourcompany.com",
region: "us",
});What stays on rootmail
Sandbox sends never leave, whoever is connected, and our reserved test addresses always take the real path so a bounce test is a real bounce. If a connected account's credentials stop working we fall back to rootmail's own sending rather than failing your messages, and report it on the settings page.