Is Mailchimp Down? How to Check Mailchimp Status Right Now

Mailchimp campaign not sending? Email automation paused or reports not loading? Learn how to check if Mailchimp is down, what breaks during an outage, and how to get instant alerts before your sends miss their window.

·6 min read

Mailchimp powers email marketing for over 13 million businesses. When it goes down during a campaign send, emails queue, automations pause, and time-sensitive promotions miss their window. Here's how to know if the problem is Mailchimp or your account.

Is Mailchimp Down Right Now?

Check these sources in order:

  1. Statusfield — Mailchimp status — real-time monitoring, updated continuously.
  2. Twitter/X — search Mailchimp down sorted by Latest. Marketing teams report outages quickly.
  3. Downdetector — aggregates user-reported outage spikes.

What Actually Breaks During a Mailchimp Outage

Mailchimp has multiple components that can fail independently:

ComponentWhat it doesImpact when down
Campaign SendingEmail delivery to subscribersCampaigns queue or fail; delivery delayed
Mailchimp APIProgrammatic accessIntegration syncs, list updates, and automated sends fail
Transactional Email (Mandrill)Transactional emails via MailchimpPassword resets, receipts, order confirmations fail
AutomationsEmail sequence triggersAutomation journeys pause; welcome emails not sent
Audience ManagementSubscriber list managementImports, unsubscribes, and tag updates fail
Reports & AnalyticsCampaign performance dataOpen rates, click data, and reports unavailable
Landing PagesMailchimp-hosted landing pagesLead capture pages return errors
Website BuilderMailchimp-hosted websitesSite unavailable

Common Mailchimp Error Symptoms

What you seeWhat it usually means
Campaign stuck at "Sending" with 0% sentCampaign sending service degraded
"We're having trouble connecting" on loginAuth or web service degraded
API returns 503 or timeout errorsMailchimp API degraded
Automation emails not triggeringAutomation engine degraded
Subscriber imports failing or stuckAudience management service degraded
Reports showing yesterday's data onlyReporting pipeline degraded
Mandrill 500 errorsTransactional email service degraded

Why Mailchimp Goes Down

Send-time infrastructure pressure. Email marketing is highly scheduled — huge volumes of campaigns all queue at "optimal send times" (Tuesday 10am, Thursday 2pm, etc.). This creates predictable infrastructure pressure windows.

Mandrill vs Mailchimp separation. Mandrill (transactional email) and Mailchimp (marketing email) run on separate infrastructure within Intuit's ecosystem. One can be down while the other works fine.

Intuit infrastructure dependencies. Mailchimp is owned by Intuit. Infrastructure shared with QuickBooks and TurboTax means certain platform-level failures can cascade into Mailchimp.

Automation engine complexity. Mailchimp's automation (journeys) engine is separate from campaign sending. A complex automation can hit concurrency limits or infrastructure issues while simple campaigns send fine.

What to Do When Mailchimp Is Down

Immediate steps:

  1. Don't cancel and restart — if a campaign shows "Sending" with 0%, don't cancel and try to resend. Canceling during an outage can result in some subscribers getting the email and others not, making de-duplication a nightmare.
  2. Check your specific component — is it sending, API, automations, or Mandrill? Knowing what's down helps you assess impact.
  3. Delay time-sensitive campaigns — if you have a flash sale email that needs to land in the next 2 hours and Mailchimp is degraded, consider pausing and rescheduling.
  4. Have a backup transactional email provider — Mandrill outages affect password resets, receipts, and order confirmations. Always have a fallback (SendGrid, Postmark) for transactional mail.

For engineering teams using the Mailchimp API:

If your application syncs subscribers or sends transactional email via Mailchimp/Mandrill, implement queue-and-retry logic. Subscriber list changes during an outage are safe to queue — they'll sync once service recovers.

Building Mailchimp-Resilient Email Workflows

Never rely solely on Mailchimp for transactional email

Your password reset emails, order confirmations, and security alerts should have a backup delivery path:

def send_transactional_email(to_email, subject, body):
    try:
        send_via_mandrill(to_email, subject, body)
    except MandrillError as e:
        if e.status >= 500:
            # Mandrill is down — fall back to SendGrid
            send_via_sendgrid(to_email, subject, body)
        else:
            raise

Handle Mailchimp API errors with a retry queue

import mailchimp_marketing
import time
 
def add_subscriber(api_key, list_id, email, tags=None):
    client = mailchimp_marketing.Client()
    client.set_config({"api_key": api_key})
    
    for attempt in range(3):
        try:
            return client.lists.add_list_member(
                list_id,
                {"email_address": email, "status": "subscribed", "tags": tags or []}
            )
        except mailchimp_marketing.api_client.ApiClientError as e:
            if "5" in str(e.status_code)[:1]:  # 5xx
                time.sleep(2 ** attempt * 10)
            else:
                raise
    
    queue_for_retry("mailchimp_subscribe", {"list_id": list_id, "email": email})

Track campaign delivery rates as health signal

Monitor your email delivery rate per campaign. A sudden drop — campaigns showing as "sent" but delivery rates dropping — can indicate Mailchimp's delivery infrastructure is degraded before the status page updates.

How to Get Instant Mailchimp Outage Alerts

Monitor Mailchimp on Statusfield and get alerted the moment Mailchimp changes status — before your scheduled campaign misses its window.

Start monitoring Mailchimp →


Frequently Asked Questions

Is Mailchimp down for everyone or just me?

Check Statusfield. If status shows all clear, check your account-specific settings: sending domain verification, daily sending limits, or account compliance issues can look identical to a platform outage from your perspective.

My Mailchimp campaign is stuck at "Sending" — should I cancel it?

Do not cancel a stuck campaign during an outage. Canceling a partially-sent campaign creates a de-duplication nightmare — some subscribers received it, others didn't. Wait for the outage to resolve; Mailchimp typically resumes stuck sends automatically once service recovers.

Mailchimp automations stopped triggering — is this an outage?

Check Statusfield for the Automations component status. If it shows operational, check your automation's trigger conditions and audience filters — they may not be meeting the trigger criteria. If multiple automations with different triggers all stopped simultaneously, it's likely an infrastructure issue.

Mandrill is down but Mailchimp campaigns work — why?

Mandrill and Mailchimp marketing campaigns run on separate infrastructure. A Mandrill outage affects transactional email only — marketing campaigns are unaffected. This is why transactional email needs a backup provider: a Mandrill outage will take down your password resets even if your newsletters send fine.

How do I get notified when Mailchimp goes down?

Set up Mailchimp monitoring on Statusfield. You'll get alerts via email or webhooks the moment Mailchimp reports an incident — so you can pause campaigns or activate your backup transactional provider before customers are impacted.

Know the moment a tool you depend on goes down

Statusfield watches 2,000+ services your business depends on and alerts you the moment they break.

Free plan · No credit card