home/migrations/from Mailgun
// migrate from

leave Mailgun. keep the work.

mailexodus reads Mailgun over its API and normalizes subscribers, lists, custom fields, suppressions into one portable schema — so you move with a report, not a 40-item checklist.

agentUse mailexodus skill: Mailgun → Sequenzy playbook
// try it

see what moves out of Mailgun.

A live route check, computed from Mailgun's real API surface. Pick any destination to compare import support — nothing is written.

analyzing Mailgun
source modePartial automated adapter
source exports5
Mailchimp imports8
destination gapsautomations
data leaves machineno · dry-run
$npx mailexodus@latest migrate --from mailgun --to mailchimp --dry-run
agentUse mailexodus skill: MailgunMailchimp playbook
// why teams leave

why teams leave Mailgun.

  • Mailgun migrations need an explicit boundary around what the API exposes.
  • Teams want a dry-run report before rebuilding subscribers, lists, custom fields, suppressions.
  • Mailgun does not provide marketing campaign or automation export coverage
// transfer boundary

what mailexodus pulls from Mailgun.

can migrate
  • +
    subscribers
  • +
    lists
  • +
    custom fields
  • +
    suppressions
  • +
    templates
needs review
  • ?
    suppressions
  • ?
    templates
cannot migrate
  • x
    tags
  • x
    segments
  • x
    campaigns
  • x
    automations
  • x
    sender reputation and domain warmup
  • x
    historical analytics, revenue attribution, and aggregate reporting
  • x
    contacts already mid-flight inside active automations
  • x
    A/B test results and provider-specific experiment history
  • x
    provider-native design blocks, product widgets, coupons, and private assets that are not exposed by API
source adapter

Partial automated adapter

Mailing lists map to lists. Members map to subscribers. Member vars map to custom attributes. Suppressions map to suppression records. Templates map to transactional templates

Mailgun does not provide marketing campaign or automation export coverage

// the playbook

how an agent migrates Mailgun → Sequenzy.

This is exactly what mailexodus hands your agent: authenticate, then for each object type — read it from Mailgun, map it to the portable schema, write it to the destination. mailexodus never writes; your agent does, with this report in hand.

01 · authenticate

Create a Mailgun private API key with read access to mailing lists, suppressions, and templates. Paste BASE_URL|DOMAIN|API_KEY, for example https://api.mailgun.net|mg.example.com|key, or JSON with baseUrl, domain, and apiKey

01subscribersmigrates
readGET /v3/lists/{mailing_list}/members (Read subscribers from Mailgun.)
mapMailing lists map to lists. Members map to subscribers. Member vars map to custom attributes. Suppressions map to suppression records. Templates map to transactional templates mailexodus renders normalized provider data into destination subscribers, lists, segments, campaigns, sequences, and review notes.
writePOST add_subscriber (Write or stage subscribers in Sequenzy.) PATCH update_subscriber (Write or stage subscribers in Sequenzy.)
02listsmigrates
readGET /v3/lists (Read lists from Mailgun.)
mapMailing lists map to lists. Members map to subscribers. Member vars map to custom attributes. Suppressions map to suppression records. Templates map to transactional templates mailexodus renders normalized provider data into destination subscribers, lists, segments, campaigns, sequences, and review notes.
writePOST create_list (Write or stage lists in Sequenzy.) POST add_subscribers_to_list (Write or stage lists in Sequenzy.)
03custom fieldsmigrates
readGET /v3/lists/{mailing_list}/members/{member_address} (Read custom fields from Mailgun.)
mapMailing lists map to lists. Members map to subscribers. Member vars map to custom attributes. Suppressions map to suppression records. Templates map to transactional templates mailexodus renders normalized provider data into destination subscribers, lists, segments, campaigns, sequences, and review notes.
writePATCH update_subscriber.customAttributes (Write or stage custom fields in Sequenzy.)
04suppressionsneeds review
readGET /v3/{domain}/suppressions/unsubscribes (Read suppressions from Mailgun.) GET /v3/{domain}/suppressions/bounces (Read suppressions from Mailgun.) GET /v3/{domain}/suppressions/complaints (Read suppressions from Mailgun.)
mapMailing lists map to lists. Members map to subscribers. Member vars map to custom attributes. Suppressions map to suppression records. Templates map to transactional templates mailexodus renders normalized provider data into destination subscribers, lists, segments, campaigns, sequences, and review notes.
writePATCH update_subscriber.status (Write or stage suppressions in Sequenzy.)
05templatesneeds review
readGET /v3/{domain}/templates (Read templates from Mailgun.)
mapMailing lists map to lists. Members map to subscribers. Member vars map to custom attributes. Suppressions map to suppression records. Templates map to transactional templates mailexodus renders normalized provider data into destination subscribers, lists, segments, campaigns, sequences, and review notes.
writePOST create_template (Write or stage templates in Sequenzy.)
stays behind
  • tags
  • segments
  • campaigns
  • automations
  • sender reputation and domain warmup
  • historical analytics, revenue attribution, and aggregate reporting
guardrails
  • Sender reputation is earned at the destination — set up SPF/DKIM/DMARC and a warmup ramp; it does not transfer.
  • Keep the source platform active until authentication, warmup, and in-flight automations have finished.
  • Honor suppressions before the first send.
  • After writing, verify counts per object type against the source before switching live sends.
// run it

guide your agent, or follow it yourself.

Pull the full playbook from the skill prompt, CLI, or MCP server, then work the steps. Start by confirming credentials: Create a Mailgun private API key with read access to mailing lists, suppressions, and templates. Paste BASE_URL|DOMAIN|API_KEY, for example https://api.mailgun.net|mg.example.com|key, or JSON with baseUrl, domain, and apiKey

inspect

provider coverage

npx mailexodus@latest info mailgun

guide

agent playbook

npx mailexodus@latest guide --from mailgun --to sequenzy

agentUse mailexodus skill: Mailgun → Sequenzy playbook