Migrate to utobo Email
Switch to utobo Email in under an hour.
We've mapped the exact steps to migrate from every major email provider. Change your API call or SMTP credentials, update your DNS records, and you're done.
Step-by-step guides
Full walkthroughs for the two most common moves — contacts, templates, automations, DNS and code.
What stays the same
- Your sending domain and email address
- Your email content and templates
- Your contact lists — import via CSV or API
- Your analytics history stays in your old provider
From SendGrid
- 1Create your utobo Email account at email.utobo.com and generate an API key.
- 2Replace your SDK:
- 3Update your send call:
// Before: sgMail.send({ to, from, subject, html }); // After: client.emails.send({ to, from, subject, html }); - 4Update your DNS — add utobo Email's DKIM and SPF records. The setup wizard shows exactly which records to add.
- 5Send a test email. Check your delivery logs. Cut over.
From Mailgun
- 1–2Same as above — create account, get API key, install SDK.
- 3
// Before (Mailgun): mg.messages.create(domain, { from, to, subject, html }); // After (utobo Email): client.emails.send({ from, to, subject, html }); - 4–5Update DNS records and send a test. Done.
From Postmark
// Before (Postmark):
client.sendEmail({ From, To, Subject, HtmlBody });
// After (utobo Email):
client.emails.send({ from, to, subject, html });SMTP migration (any provider)
If you're using SMTP, change these settings:
Host: smtp.mail.utobo.com
Port: 587
Encryption: STARTTLS
Username: apikey (the literal word "apikey")
Password: your utobo Email API key (av_live_…)That's the entire migration for SMTP users.
Import your contacts
Download a CSV of your contacts from your current provider. Import it in the utobo Email dashboard under Audiences → Import. Lists, tags, and unsubscribes are all supported.
Need help with a complex migration?
High volumes, custom infrastructure, or legacy systems — we'll help you plan and execute.