# Brew > Brew is an AI-native email service provider (ESP): you describe an email, automation, or segment in plain English and Brew generates the on-brand email, sends it from your own verified domain, and reports on it. A Public REST API, TypeScript SDK, and hosted MCP server let AI agents drive the whole lifecycle. - **What it is:** a full email service provider. Brew stores the contacts, owns the sending infrastructure, and authenticates your domain with SPF, DKIM and DMARC. It is not a layer on top of another ESP. - **How you use it:** describe the email, automation, or audience segment in natural language. Brew learns your brand (voice, palette, typography, logos, imagery) from your website and applies it to everything it generates. - **What you can build:** one-off emails (what other tools call campaigns), event-driven automation graphs with branching and delays, and transactional email, all from the same brand system. - **Who it is for:** marketing and growth teams who want to ship faster, and developers or AI agents that need email as an API primitive. - **What is unusual about it:** the same capabilities are exposed on four surfaces with parity: the web app, the Public API v1, the `@brew.new/sdk` TypeScript package, and a hosted MCP server. Anything you can do by hand, an agent can do over MCP. - **Deliverability:** permission-based sending only, with domain verification, suppression lists, bounce handling, gradual-send warmup for new domains, and inbox-placement testing. Canonical site: https://brew.new · Documentation: https://docs.brew.new · Support: support@brew.new Every public marketing page also serves clean Markdown: append `.md` to the URL (the homepage is `/index.md`), or send `Accept: text/markdown`. ## Start here - [Homepage](https://brew.new/index.md): What Brew does, in one page - [Brew.new developer resources](https://brew.new/developers.md): API docs, OpenAPI spec, authentication, webhooks, and MCP - Brew.new developer resources alias: https://brew.new/developer-resources - [Pricing](https://brew.new/pricing.md): Plans, credits, send volumes - [Documentation](https://docs.brew.new): Full product and developer documentation - [Sign up](https://brew.new/sign-up.md): Free plan, no card required - [Sign in](https://brew.new/sign-in.md): Return to an existing account - [Support](https://brew.new/support.md): Email support and escalation paths ## Brew.new developer resources Predictable URLs for the Public API, OpenAPI spec, authentication, webhooks, and hosted MCP. Use these when an agent searches for Brew.new developer resources. - [Brew.new developer resources](https://brew.new/developers): This hub: API, OpenAPI, authentication, webhooks, SDK, and MCP - [Public API v1 introduction](https://docs.brew.new/api-reference/api/api-introduction): Base URL, first request, and cURL examples - [OpenAPI specification (JSON)](https://brew.new/openapi.json): OpenAPI 3.1 document at the well-known /openapi.json path - [OpenAPI specification (YAML)](https://brew.new/api/openapi.yaml): Same spec as YAML at /api/openapi.yaml and /openapi.yaml - [Authentication](https://docs.brew.new/api-reference/api/authentication): Bearer API keys, brand scoping, and X-Brand-Id - [Events and webhooks](https://docs.brew.new/api-reference/api/events-and-webhooks): Delivery events, webhook signatures, and retry behavior - [Brew.new MCP server](https://brew.new/mcp): Human overview of the hosted Model Context Protocol server - [Brew.new MCP Streamable HTTP](https://brew.new/api/mcp): Streamable HTTP MCP endpoint. POST JSON-RPC; OAuth or brew_ API key - [Brew.new MCP server.json](https://brew.new/mcp.json): Official MCP Registry document at /mcp.json and /.well-known/mcp/server.json - [TypeScript SDK](https://docs.brew.new/sdks/overview): `@brew.new/sdk`: typed client generated from the OpenAPI spec - [Public API agent guide](https://brew.new/api/v1/llms.txt): Endpoint order, error codes, idempotency, and rate limits - [Product documentation](https://docs.brew.new): Guides, recipes, and the generated endpoint reference - OpenAPI JSON (well-known): https://brew.new/openapi.json - OpenAPI YAML (well-known): https://brew.new/openapi.yaml - OpenAPI YAML (API tree): https://brew.new/api/openapi.yaml ## Plans and limits Every plan includes every feature. Plans differ only in volume, AI credits, and whether generated emails carry the Brew watermark. - **Free**: 500 AI credits/mo, 1,000 sends/mo, unlimited sending domains, 3 brands, Brew watermark. All features. No card required. - **Growth**: 10,000 AI credits/mo, 50,000 sends/mo, unlimited sending domains, 10 brands, no watermark. More volume for growing teams. - **Pro**: 25,000 AI credits/mo, 200,000 sends/mo, unlimited sending domains, 50 brands, no watermark. Highest self-serve volume. - **Enterprise**: Custom volume and dedicated support. See [pricing](https://brew.new/pricing.md) for current prices; capacities above are authoritative. ## For AI agents: the Brew MCP server The fastest way for an agent to use Brew. One hosted MCP endpoint gives an assistant the whole lifecycle: learn a brand, generate and edit email designs, build automations, segment audiences, send or schedule, and read analytics back. Everything is scoped to a single brand chosen at connect time. Compose it with a CRM or enrichment MCP (Clay, Attio) for personalized segments. - Connection URL: `https://brew.new/api/mcp` (POST `https://brew.new/mcp` rewrites to the same Streamable HTTP handler) - MCP server.json: https://brew.new/mcp.json - MCP server.json (well-known): https://brew.new/.well-known/mcp/server.json - MCP server.json (well-known short): https://brew.new/.well-known/mcp.json - Auth: OAuth 2.1 with Dynamic Client Registration + PKCE, or a brand-scoped Brew API key - Clients: ChatGPT, Claude, Grok, Cursor, Codex, VS Code, and any MCP-compatible client - [Brew MCP: overview, use cases and quickstart](https://brew.new/mcp.md) - [MCP overview](https://docs.brew.new/api-reference/mcp/overview): What the server exposes and how brand scoping works - [MCP quickstart](https://docs.brew.new/api-reference/mcp/quickstart): Connect and run your first tool call - [Connect your client](https://docs.brew.new/api-reference/mcp/connect-your-client): ChatGPT, Claude, Grok, Cursor, Codex, VS Code and other MCP clients - [Tool reference](https://docs.brew.new/api-reference/mcp/tools): Every tool, its arguments and its return shape - [Workflows](https://docs.brew.new/api-reference/mcp/workflows): Guided multi-tool flows: launch a campaign, analyze performance - [Authentication and scoping](https://docs.brew.new/api-reference/mcp/authentication-and-scoping): OAuth 2.1 (DCR + PKCE) vs brand-scoped API keys - [Use Brew with AI agents](https://docs.brew.new/integrations/ai-agents/use-brew-with-ai-agents) - [Lovable / Supabase Edge Function recipe](https://docs.brew.new/integrations/ai-tools/lovable): Copy-paste prompt for wiring Brew into a Lovable app ## For developers: Public API v1 A REST API over the same primitives: brands, emails (designs), sends, audiences, contacts, automations, triggers, domains and analytics. Read the agent guide first. It encodes the required ordering of operations and the mistakes that cost the most round-trips. - [Public API v1: Agent Operations Guide](https://brew.new/api/v1/llms.txt): **Start here.** Every endpoint, error code, body shape, idempotency and rate-limit rule, plus the canonical end-to-end flows - [OpenAPI 3.1 specification (JSON)](https://brew.new/openapi.json): Well-known machine-readable contract, generated from the Zod contracts - [OpenAPI 3.1 specification (YAML)](https://brew.new/api/openapi.yaml): Same spec at /api/openapi.yaml and /openapi.yaml - [OpenAPI 3.1 specification (generated artifact)](https://brew.new/openapi/public-api-v1.yaml): Byte-identical YAML mirror - [Discovery catalog](https://brew.new/api/v1/help): No-auth JSON catalog of scopes, credits, rate limits and the endpoint list - [API introduction](https://docs.brew.new/api-reference/api/api-introduction): Base URL, first request, cURL examples - [Authentication](https://docs.brew.new/api-reference/api/authentication) - [Errors](https://docs.brew.new/api-reference/api/errors) - [Rate limits](https://docs.brew.new/api-reference/api/rate-limits) - [Idempotency](https://docs.brew.new/api-reference/api/idempotency) - [Pagination](https://docs.brew.new/api-reference/api/pagination) - [Batch operations](https://docs.brew.new/api-reference/api/batch-operations) - [Async jobs](https://docs.brew.new/api-reference/api/async-jobs) - [Credits](https://docs.brew.new/api-reference/api/credits): What each operation costs - [Events and webhooks](https://docs.brew.new/api-reference/api/events-and-webhooks) - [Response headers](https://docs.brew.new/api-reference/api/response-headers) - [Endpoint reference (generated)](https://docs.brew.new/api-reference/public-v1): Per-endpoint pages rendered from the OpenAPI spec - [Guide: monitor campaign sends](https://docs.brew.new/api-reference/guides/monitor-campaign-sends) - [Guide: per-contact engagement](https://docs.brew.new/api-reference/guides/per-contact-engagement) - [Guide: check brand readiness](https://docs.brew.new/api-reference/guides/check-brand-readiness) ## TypeScript SDK (`@brew.new/sdk`) ```bash npm install @brew.new/sdk ``` - [SDK overview](https://docs.brew.new/sdks/overview): What ships in `@brew.new/sdk` and when to use it over raw HTTP - [Installation](https://docs.brew.new/sdks/typescript/installation) - [Quickstart](https://docs.brew.new/sdks/typescript/quickstart) - [Resources](https://docs.brew.new/sdks/typescript/resources): Every resource namespace and method - [Error handling](https://docs.brew.new/sdks/typescript/error-handling) - [Agentic cookbook](https://docs.brew.new/sdks/typescript/agentic-cookbook): Recipes for agents wiring triggers → emails → automations → fires - [SDK authentication](https://docs.brew.new/sdks/authentication) - [Generate your own client (OpenAPI codegen)](https://docs.brew.new/sdks/openapi-codegen): For languages other than TypeScript ## Documentation - [Welcome & quickstart](https://docs.brew.new/get-started/welcome): What Brew is, and the path from signup to first send - [Add your brand](https://docs.brew.new/get-started/add-your-brand): Brand extraction from a URL: voice, colours, fonts, logos, imagery - [Verify your sending domain](https://docs.brew.new/get-started/verify-your-sending-domain): DNS records, DKIM / SPF / DMARC, automatic DNS via Entri - [What you can send](https://docs.brew.new/get-started/what-you-can-send): Permission-based sending policy, prohibited content, list-quality thresholds - [Emails](https://docs.brew.new/create-emails/emails): Generate, edit, version and preview an email design - [Automations](https://docs.brew.new/create-emails/automations): Event-driven graphs: triggers, delays, branches, sends - [Emails vs automations](https://docs.brew.new/create-emails/emails-vs-automations): Which one to reach for, and how a design is reused across both - [Send options](https://docs.brew.new/create-emails/send-options): Send now, schedule, gradual send / domain warmup, smart sending - [The interface](https://docs.brew.new/create-emails/the-interface): Canvas, chat and the visual editor - [Prompt guide](https://docs.brew.new/create-emails/prompt-guide): How to prompt the email agent for the output you want - [Templates](https://docs.brew.new/create-emails/templates): Start from a reference design and remix it onto your brand - [Preview in real inboxes](https://docs.brew.new/create-emails/preview-in-real-inboxes): Render checks across Gmail, Outlook, Apple Mail and more - [Audit an email](https://docs.brew.new/create-emails/audit-email): Production-readiness checks for links, assets, copy and accessibility - [Brand identity](https://docs.brew.new/brand/brand-identity): Voice, theme, assets and the generated design system - [Design baseline](https://docs.brew.new/brand/design-baseline): The layout and typography rules every generated email inherits - [Multiple brands](https://docs.brew.new/brand/multiple-brands): Running several brands in one organization - [Unsubscribe](https://docs.brew.new/brand/unsubscribe): Unsubscribe page, preference handling and compliance footers - [Inbox icons (BIMI)](https://docs.brew.new/brand/inbox-icons): Getting your logo to show next to the subject line - [Add contacts](https://docs.brew.new/audience/add-contacts): CSV import, manual entry, integration sync, API - [Manage contacts](https://docs.brew.new/audience/manage-contacts): Custom fields, merge tags, suppression and deletion - [Validate contacts](https://docs.brew.new/audience/validate-contacts): Pre-send verification that keeps bounce rates down - [Create audiences](https://docs.brew.new/audience/create-audiences): Natural-language filters that resolve to dynamic segments - [Audience hygiene](https://docs.brew.new/audience/audience-hygiene): Bounce handling, re-engagement and list decay - [Reading analytics](https://docs.brew.new/analytics/reading-analytics): Sends, opens, clicks, deliverability signals and machine-click filtering - [Key metrics and terms](https://docs.brew.new/analytics/key-metrics-and-terms): Exact definitions behind every number Brew reports - [Recipe: build a welcome flow](https://docs.brew.new/recipes/build-a-welcome-flow) - [Recipe: send a segmented newsletter](https://docs.brew.new/recipes/send-a-segmented-newsletter) - [Recipe: lifecycle emails for SaaS / B2B](https://docs.brew.new/recipes/lifecycle-emails-saas-b2b) - [Recipe: lifecycle emails for ecommerce](https://docs.brew.new/recipes/lifecycle-emails-ecommerce) - [Recipe: QA before a big send](https://docs.brew.new/recipes/qa-before-a-big-send) - [Recipe: launch from a waitlist](https://docs.brew.new/recipes/launch-from-a-waitlist) - [Recipe: run Brew from an AI agent](https://docs.brew.new/recipes/run-brew-from-an-ai-agent) - [Settings](https://docs.brew.new/settings/settings) - [Security and compliance](https://docs.brew.new/security-and-compliance): Data handling, retention, subprocessors and access controls ## Integrations Brew connects to 20 tools, in two directions. Data-in providers feed Brew: firing automations from product events (a signup, a payment, a subscription change) or pulling designs and responses in. Data-out providers receive finished email designs, so you can keep sending from an ESP you already run. - [All integrations](https://brew.new/browse/integrations.md): Browsable catalog with per-provider setup steps - Data in (9): Clerk, Figma, Framer, Stripe, Stytch, Supabase, WorkOS, Shopify, RevenueCat - Data out (11): Braze, Brevo, HubSpot, Klaviyo, Iterable, Postmark, OneSignal, Mailgun, SendGrid, Mailjet, Mailchimp - [Braze integration](https://brew.new/browse/integrations/braze.md): Marketing automation export - [Brevo integration](https://brew.new/browse/integrations/brevo.md): Email marketing & automation - [Clerk integration](https://brew.new/browse/integrations/clerk.md): Auth event triggers - [Figma integration](https://brew.new/browse/integrations/figma.md): Design-to-email - [Framer integration](https://brew.new/browse/integrations/framer.md): Forms and signups - [HubSpot integration](https://brew.new/browse/integrations/hubspot.md): CRM & marketing automation - [Klaviyo integration](https://brew.new/browse/integrations/klaviyo.md): Email & SMS marketing - [Iterable integration](https://brew.new/browse/integrations/iterable.md): Cross-channel marketing - [Postmark integration](https://brew.new/browse/integrations/postmark.md): Transactional email delivery - [OneSignal integration](https://brew.new/browse/integrations/onesignal.md): Push & email messaging - [Mailgun integration](https://brew.new/browse/integrations/mailgun.md): Email delivery infrastructure - [SendGrid integration](https://brew.new/browse/integrations/sendgrid.md): Email delivery by Twilio - [Mailjet integration](https://brew.new/browse/integrations/mailjet.md): Email delivery & templates - [Mailchimp integration](https://brew.new/browse/integrations/mailchimp.md): Email marketing & campaigns - [Stripe integration](https://brew.new/browse/integrations/stripe.md): Customer sync + event triggers - [Stytch integration](https://brew.new/browse/integrations/stytch.md): Auth event triggers - [Supabase integration](https://brew.new/browse/integrations/supabase.md): Auth-event triggers - [WorkOS integration](https://brew.new/browse/integrations/workos.md): Enterprise auth triggers - [Shopify integration](https://brew.new/browse/integrations/shopify.md): Commerce event triggers - [RevenueCat integration](https://brew.new/browse/integrations/revenuecat.md): IAP + subscription events ## Email templates Real AI-generated email designs, browsable without an account. Any template can be remixed onto your own brand with a single prompt. - [Template gallery](https://brew.new/browse/templates.md): Grid of remixable email designs - [Explore canvas](https://brew.new/explore.md): Pan, zoom and semantically search the full template set ## Blog - [Abandoned Cart Emails: How to Recover 10-15% of Lost Sales](https://brew.new/blog/abandoned-cart-emails.md): Master abandoned cart emails with proven templates, timing strategies, and optimization tactics. Learn how to recover lost revenue automatically. - [What still applies when an agent sends your email](https://brew.new/blog/agent-email-deliverability.md): Agents do not get a separate inbox. Same CAN-SPAM rules, same Gmail thresholds, same need to split marketing from transactional on the wire. - [How AI Is Changing Email Automation](https://brew.new/blog/ai-email-automation.md): Discover how AI email automation is transforming email marketing. What's real, what's hype, and how to get started. - [AI Email Marketing Tools: What Actually Works](https://brew.new/blog/ai-email-marketing-tools.md): Discover which AI email marketing tools deliver real results. We separate hype from reality and show you what AI can actually do for your campaigns. - [B2B Email Marketing: The Complete Strategy Guide](https://brew.new/blog/b2b-email-marketing.md): Master B2B email marketing with proven strategies for lead generation, nurturing, and conversion. Includes templates, sequences, and real examples. - [10 Best Email Marketing Software in 2026: Complete Comparison Guide](https://brew.new/blog/best-email-marketing-software.md): Find the best email marketing software for your business. We compare 10 top platforms on features, pricing, ease of use, and who each one is best for. - [Your AI assistant can now run your email marketing](https://brew.new/blog/brew-mcp.md): Connect Brew to ChatGPT, Claude, Cursor, or any AI assistant. It writes on-brand emails, sends and schedules, builds automations, and reports back. - [Email A/B Testing: The Complete Guide to Better Results](https://brew.new/blog/email-ab-testing.md): Master email A/B testing with proven strategies. Learn what to test, how to run valid tests, and how to interpret results for continuous improvement. - [The Email Canvas: A Faster Way to Create and Compare Emails](https://brew.new/blog/email-canvas-workflow.md): A canvas-based email workflow lets teams generate, compare, edit, preview, and export campaigns without losing context. - [Email Deliverability: The Complete Guide to Reaching the Inbox](https://brew.new/blog/email-deliverability.md): Master email deliverability with this comprehensive guide. Learn what affects inbox placement and how to fix common deliverability problems. - [email-design.md: how we made AI emails actually on-brand](https://brew.new/blog/email-design-md.md): AI agents read CLAUDE.md and llms.txt. So why does your brand live in a database? Why we moved it to email-design.md — a document an LLM can read. - [Email List Building: 15 Proven Strategies to Grow Your Subscribers](https://brew.new/blog/email-list-building.md): Learn how to build an email list that converts. 15 proven tactics from lead magnets to optimization, with real examples and implementation guides. - [Email Marketing Automation: The Complete Guide](https://brew.new/blog/email-marketing-automation-guide.md): Master email marketing automation with this comprehensive guide. Learn which automations to build, how to set them up, and strategies that maximize results. - [10 Email Marketing Best Practices That Still Work](https://brew.new/blog/email-marketing-best-practices.md): Master email marketing best practices that drive results. 10 proven strategies for engagement and revenue in 2025. - [Email Marketing Platforms Compared: Find Your Perfect Match (2026)](https://brew.new/blog/email-marketing-platforms-compared.md): Side-by-side comparison of leading email marketing platforms. Features, pricing, pros and cons to help you choose the right tool for your business. - [Email Marketing ROI: How to Calculate and Maximize Your Returns](https://brew.new/blog/email-marketing-roi.md): Learn exactly how to calculate email marketing ROI. Includes benchmarks by industry, strategies to improve returns, and common mistakes that kill ROI. - [50+ Email Marketing Statistics You Need to Know in 2026](https://brew.new/blog/email-marketing-statistics.md): The latest email marketing statistics and benchmarks for 2025. ROI data, open rates, click rates, and trends backed by current research. - [Email Marketing Trends 2026: What's Working Now](https://brew.new/blog/email-marketing-trends-2025.md): The email marketing trends shaping 2025. From AI-powered creation to privacy changes, here's what smart marketers are doing differently. - [Email Marketing vs Social Media: Which Channel Wins?](https://brew.new/blog/email-marketing-vs-social-media.md): Email marketing vs social media compared head-to-head. ROI, reach, engagement, and effectiveness data to help you decide where to invest. - [Email opens are a weak metric. Measure these instead](https://brew.new/blog/email-metrics-that-matter.md): Apple Mail Privacy Protection inflated opens. Track clicks you trust, replies, conversions, and complaints. Here is how we classify a click. - [Email Segmentation: The Strategy Guide That Drives 760% More Revenue](https://brew.new/blog/email-segmentation.md): Learn email segmentation strategies that actually work. Practical implementation guide with examples, templates, and step-by-step instructions. - [Email Subject Lines: 100+ Examples That Actually Get Opens](https://brew.new/blog/email-subject-lines.md): Master email subject lines with proven formulas and 100+ examples. Learn what makes subscribers click and how to write subject lines that convert. - [Merry Christmas & Happy Holidays from Brew 🎄](https://brew.new/blog/happy-holidays-2025.md): A heartfelt thank you from the Brew team. Reflecting on an incredible year of growth, gratitude, and exciting plans for 2026. - [How Harmonya turned a monthly newsletter into a lifecycle program](https://brew.new/blog/harmonya-lifecycle-email.md): Noah Adelstein wrote up Cory Nelson at Harmonya. What we saw the morning after he signed up, and what the setup actually depends on. - [How to brief an email agent](https://brew.new/blog/how-to-brief-an-email-agent.md): A brief an email agent can actually use. Audience, job, offer, proof, and the constraints that stop a fluent draft from shipping the wrong email. - [How to Write Marketing Emails That Convert (With Templates)](https://brew.new/blog/how-to-write-marketing-emails.md): Learn the fundamentals of writing marketing emails that get opened, read, and clicked. Includes templates, formulas, and real examples. - [HubSpot vs Mailchimp: Which Email Marketing Platform Is Right for You?](https://brew.new/blog/hubspot-vs-mailchimp.md): HubSpot vs Mailchimp compared head-to-head. We break down pricing, features, automation, ease of use, and which platform wins for different business types. - [How to Turn Existing Email Designs Into On-Brand Emails With AI](https://brew.new/blog/import-existing-email-designs-ai.md): Teams with existing email designs can use AI to recreate, remix, and adapt their approved layouts without starting from scratch. - [Introducing Brew: The AI-Native ESP](https://brew.new/blog/introducing-brew.md): Meet Brew—the first email platform where AI creates complete campaigns. Strategy, copy, design, and code in seconds. - [7 Best Mailchimp Alternatives in 2026: Features, Pricing & Honest Reviews](https://brew.new/blog/mailchimp-alternatives.md): Looking for Mailchimp alternatives? We compare the 7 best options with real pricing, features, pros and cons. Find the right platform for your needs. - [Newsletter Best Practices: How to Create Emails People Actually Read](https://brew.new/blog/newsletter-best-practices.md): Master newsletter creation with proven best practices. Content strategy, design tips, and growth tactics from successful publishers. - [Transactional emails: what they are and how to send them](https://brew.new/blog/transactional-emails.md): What counts as transactional under CAN-SPAM, why carts and trial expiry usually do not, and how Brew sends transactional email through automations. - [Triggered Email Automations: Marketing Flows and Transactional Emails Explained](https://brew.new/blog/triggered-email-automations-guide.md): Triggered email automations include both lifecycle marketing flows and transactional messages. Learn how they work and which ones to build first. - [Welcome Email Sequence: The Complete Guide (With Templates)](https://brew.new/blog/welcome-email-sequence.md): Learn how to create welcome email sequences that convert. Includes templates, timing strategies, and real examples from high-performing brands. - [What Is an AI-Native ESP? How Email Platforms Are Changing in 2026](https://brew.new/blog/what-is-an-ai-native-esp.md): AI-native ESPs replace manual email production with agents that understand brand, build campaigns, trigger automations, and connect to your stack. - [What Is Email Marketing? The Complete Beginner's Guide](https://brew.new/blog/what-is-email-marketing.md): Learn what email marketing is, why it matters, and how to get started. A beginner-friendly guide covering everything you need to know. - [What we learned from hitting #1 on Product Hunt](https://brew.new/blog/what-we-learned-hitting-product-of-the-week.md): Brew hit #1 Product of the Week on [Product Hunt](https://www.producthunt.com/products/brew-5). The playbook, the surprises, and what I wish I had known. - [Win-back emails: how to re-engage customers who went quiet](https://brew.new/blog/win-back-emails.md): How to write a win-back sequence. Define quiet in your product, lead with a reason to return, and stop before the list starts complaining. - [All posts](https://brew.new/blog.md) ## Comparisons First-party comparisons against the incumbents. Each page states where Brew wins, where the alternative wins, and who should pick which. - [Brew vs Mailchimp](https://brew.new/compare/brew-vs-mailchimp.md) - [Brew vs Klaviyo](https://brew.new/compare/brew-vs-klaviyo.md) - [Brew vs HubSpot](https://brew.new/compare/brew-vs-hubspot.md) - [Brew vs SendGrid](https://brew.new/compare/brew-vs-sendgrid.md) - [Brew vs Constant Contact](https://brew.new/compare/brew-vs-constant-contact.md) - [Brew vs ActiveCampaign](https://brew.new/compare/brew-vs-activecampaign.md) - [Brew vs ConvertKit](https://brew.new/compare/brew-vs-convertkit.md) ## Trust, legal and changelog - [Product changelog](https://docs.brew.new/changelog/overview): What shipped, newest first - [API changelog](https://docs.brew.new/changelog/api): Breaking and additive changes to the Public API v1 - [Terms of service](https://docs.brew.new/legal/terms-of-service) - [Privacy policy](https://docs.brew.new/legal/privacy-policy) - [Acceptable use policy](https://docs.brew.new/legal/acceptable-use-policy) - [Data protection addendum](https://docs.brew.new/legal/data-protection-addendum) - [GDPR and your data](https://docs.brew.new/legal/gdpr-and-your-data) - [Subprocessors](https://docs.brew.new/legal/subprocessors) ## Optional - [Full site content](https://brew.new/llms-full.txt): Every public marketing page inlined as one Markdown document - [Sitemap](https://brew.new/sitemap.xml) - [X / Twitter](https://x.com/brewdotnew) - [LinkedIn](https://www.linkedin.com/company/brewdotnew) - [YouTube](https://www.youtube.com/@brewdotnew)