Mailchimp Transactional Email is Mailchimp’s transactional email service, built on the Mandrill infrastructure that Mailchimp acquired and rebranded in 2016. It handles one-to-one triggered messages — password resets, order confirmations, form notifications — separately from Mailchimp’s bulk marketing platform.
For WordPress sites, the service works as an SMTP relay or via its API. The catch: it is not a standalone product. Transactional Email is an add-on that requires a Mailchimp Standard plan ($20/month minimum) before any email blocks can be purchased.
What it does
Mailchimp Transactional Email sends individual messages triggered by application events. In a WordPress context, that means every email generated by wp_mail() — core notifications, plugin alerts, WooCommerce receipts, contact form submissions — gets routed through Mandrill’s sending infrastructure instead of the host’s local mail system.
The service provides:
- SMTP relay and API access. WordPress mailer plugins connect via SMTP (
smtp.mandrillapp.com, port 587 with STARTTLS). The Mandrill API is also available for plugins that support it directly. - Per-message tracking. Open rates, click rates, bounce classification, and delivery status for every message sent. This data lives in the Mailchimp Transactional dashboard, not in WordPress.
- DKIM signing. Custom DKIM records can be configured for the sending domain. SPF alignment uses Mandrill’s include mechanism (
include:spf.mandrillapp.com). - Webhook notifications. Mandrill can POST delivery events (bounces, complaints, deferrals) back to a URL, which is useful for sites that need to react to delivery failures programmatically.
- Template engine. Email templates designed in Mailchimp’s builder can be published to the transactional service. Most WordPress sites will not use this — WordPress and WooCommerce generate their own HTML — but it exists for custom integrations.
What the service does not do: it does not provide an inbox, a sending domain, or any marketing automation. It is purely an outbound relay.
WordPress integration
Two paths to connect Mailchimp Transactional Email to WordPress:
SMTP relay via a mailer plugin. WP Mail SMTP, FluentSMTP, Post SMTP, and most other mailer plugins support generic SMTP configuration. The settings:
- Host:
smtp.mandrillapp.com - Port:
587(STARTTLS) - Username: the email address on the Mailchimp account
- Password: a Mailchimp Transactional API key (generated in the Transactional dashboard, not the main Mailchimp API key)
Mandrill-specific plugin. WP Mail SMTP includes a dedicated Mandrill mailer option that uses the API directly rather than SMTP. This avoids SMTP overhead but locks the configuration to WP Mail SMTP specifically.
Either path routes all wp_mail() output through Mandrill. The SMTP method is more portable across plugins; the API method is marginally faster per message.
Pricing
Mailchimp Transactional Email is an add-on to Mailchimp’s marketing platform. It requires a Standard plan or higher — the Free and Essentials tiers do not qualify.
The minimum cost is the Standard plan ($20/month) plus at least one email block. Blocks contain 25,000 emails each:
| Blocks | Volume | Price per block |
|---|---|---|
| 1–20 | Up to 500,000 | $20 |
| 21–40 | 500k–1M | $18 |
| 41–80 | 1M–2M | $16 |
| 81–120 | 2M–3M | $14 |
| 121–160 | 3M–4M | $12 |
| 161+ | 4M+ | $10 |
At minimum, a WordPress site sending a few hundred transactional emails per month pays $40/month: $20 for the Standard plan plus $20 for the smallest email block (25,000 emails, most of which go unused). Unused blocks do not roll over.
An optional dedicated IP costs $29.95/month on top of the block pricing.
New accounts can send up to 500 test emails to a verified domain before purchasing blocks.
Cost comparison
For low-volume WordPress sites (under 1,000 emails/month), the effective cost per email is high relative to alternatives. Postmark charges $1.25 per 1,000 emails with no platform subscription. SMTP2GO offers a free tier at 1,000 emails/month. Brevo (formerly Sendinblue) includes 300 emails/day on its free plan. Mailchimp Transactional Email’s minimum $40/month commitment makes sense only at volumes where the per-email cost of a block ($0.0008) matters more than the fixed platform fee.
Who this suits
Mailchimp Transactional Email fits a specific profile: sites already using Mailchimp for marketing email that want transactional sending on the same platform, or high-volume senders (tens of thousands of messages per month) who benefit from Mandrill’s infrastructure and per-message analytics.
For most WordPress sites sending fewer than a few thousand emails per month, the mandatory Standard plan subscription makes this an expensive choice. The service itself is technically sound — Mandrill’s deliverability reputation is well-established — but the pricing structure bundles marketing platform costs into what is fundamentally a transactional relay.
Sites that need only transactional email, without Mailchimp’s marketing features, will find better value elsewhere. See nanoPost’s transactional email overview for alternatives.
Leave a Reply