Product launch email for nonprofit brands
A nonprofit launch email turns a campaign, report, or event into one clean donate ask with a deadline a donor can feel. This template gives you the sector strategy, the copy, and the ESP-safe HTML for Klaviyo or Mailchimp.
What makes this product launch work for nonprofit
Nonprofit launches live or die on three things: a deadline the donor can read, an impact unit they can do math on, and a single donate button. Get those right and your open rate lands in the 25 to 30 percent range the sector outperforms the rest of email marketing in. Get them wrong and you have sent a newsletter.
### Trigger against a real clock The trigger is the deadline, not "we have news." A matching window that closes at midnight. A land deal with a December 31 closing. A report embargo that lifts Tuesday at 9am. For Greenhollow Land Trust's Cedar Ridge campaign, the trigger was a timber buyer's January 2 option on 240 acres of old-growth hemlock. That is a clock a donor can read.
### Timing Tuesday and Wednesday mornings, 9 to 11am local, beat Giving Friday by a wide margin for mid-campaign pushes. Most year-end money lands in the 72 hours between December 29 and 31. For a report or event launch, send within 90 minutes of the embargo or on-sale so the email and the press hit the inbox together.
### Offer: convert the ask into countable units "$60 protects one acre" beats "your gift makes a difference" every time. Anchor a match on top of it. Every dollar matched up to $50,000 by the Holloway Family. A stated match lifts both response rate and average gift size in the same send, often doubling the revenue of an unmatched control to the same list.
### Copy angle: lead with the stake Donors give to outcomes, not to organizations. Open with what stands to be lost or won in concrete terms: the hemlock stand, the families housed, the third-graders reading at grade level. Put the brand second. Keep the donate CTA above the fold and repeat it once at the bottom. No carousel of three programs. One campaign, one number, one button.
Single-CTA donate emails regularly beat multi-CTA versions on click-through in nonprofit A/B tests. Subject lines that name the deadline beat subject lines that name the org. These two rules cover most of the lift.
### Real copy from the Cedar Ridge send - Subject: "30 days to save Cedar Ridge (your gift is matched)" - Preheader: "240 acres of old-growth hemlock. Closing Dec 31. Donate and the Holloways match it." - Hero headline: "240 acres. 30 days. Matched." - Body: one short paragraph on what Cedar Ridge is, one line on the timber alternative, one line on the match. - CTA: "Donate to save Cedar Ridge"
That is the whole email. No second button. No "learn more." No "read the full report." The report links from a single footer line, never a competing CTA.
Why it renders in every inbox
Klaviyo and Mailchimp both deliver into Gmail, Apple Mail, and the Outlook desktop client. Outlook desktop still runs on Word's rendering engine, which ignores flexbox, ignores media queries, ignores border-radius, and strips external CSS. A nonprofit email that looks perfect in your browser can collapse in Outlook the morning the match opens. The fix is structural, not stylistic.
### Nested HTML tables, not divs Every layout section is a <table> with <tr> and <td>. This is the one structure Word's engine parses reliably. Columns become nested tables side by side. MJML compiles to exactly this for you.
### Inline CSS Gmail strips your <style> block for non-Gmail clients and Apple Mail reads it. Inline styles on every <td> is the only way both clients get the same answer. Color, font-size, and padding all live on the element.
### Bulletproof VML button Outlook cannot render a CSS button with border-radius. MJML's <mj-button> emits a Vector Markup Language <v:roundrect> block wrapped in Outlook-only conditional comments, so the donate button shows as a real clickable green rectangle in Word. In Gmail and Apple Mail the same button is a clean CSS pill. One component, two engines, both correct.
### Live text over images Spam filters and dark mode both punish image-only emails. Type the headline and the impact line as live text. The hero image carries the photograph. The words carry the ask.
### Dark-mode color-scheme meta Add <meta name="color-scheme" content="light dark"> and <meta name="supported-color-schemes" content="light dark"> to the head. Apple Mail in dark mode then inverts predictably instead of mangling your dark green on black. Keep your wordmark as a PNG with a light variant and a dark variant if the logo is the brand lockup.
### One mobile media query A single @media (max-width: 480px) block resizes the hero image to 100 percent width and drops the side padding. Anything more than one breakpoint and you fight Outlook 2007 through 2019, which ignore media queries entirely and fall back to the desktop layout.
### Web-font fallbacks Load no external font. Georgia or a system serif for a conservation or institutional brand. Helvetica or Arial for a services brand. The font-family stack cascades to the local install. No donor ever sees a missing-font fallback box.
How to use it in Klaviyo or Mailchimp
### 1. Copy the rendered HTML In Mailwright, hit Export and copy the ESP-ready HTML to your clipboard.
### 2. Paste it in - Klaviyo: create the email, drag in an HTML block (or use the HTML email template), and paste the full document into the source view. - Mailchimp: Campaign > Content > Code your own > Paste in code. Drop the whole file in.
### 3. Swap the brand layer Replace Greenhollow Land Trust with your client's name, the hero image URL, the impact units ($60 per acre becomes your own per-unit math), the match terms, and the donate link. Colors live in two places: the mj-attributes defaults and the inline section backgrounds. Match the client's primary green, navy, or red plus a single neutral.
### 4. Wire merge tags (this is where a nonprofit template beats a generic one) - Klaviyo: {{ first_name|default:'Friend' }} for the greeting. {{ person|lookup:'Last Gift Amount' }} to surface a lapsed or current donor ("You gave $60 last spring"). Use a flow filter for monthly sustainers and reference it in the preheader ("Your monthly gift is working"). - Mailchimp: *|FNAME|* for the name, *|DONATION_AMOUNT|* for last gift, and a custom merge for fund designation ("Give to the Annual Fund vs. Cedar Ridge"). Pull the EIN and physical address from a list field so the legal footer stays correct across every client.
### 5. Test before send - Render in Gmail web, Gmail Android, Apple Mail iOS, Outlook 365 desktop, and Outlook.com. - Check dark mode in Apple Mail and Outlook. - Send a proof through Litmus or Email on Acid if you have one. If not, at minimum proof on a phone and in Outlook desktop. - Click the donate button. Confirm it resolves to the right fund page with the campaign UTM appended.
Questions
Is this template free for a small nonprofit? +
Yes. The page and the MJML below are free to read and copy. If your nonprofit sends volume through Klaviyo or Mailchimp, you can hand-paste the exported HTML and never pay Mailwright. The paid plan is for agencies running this across several nonprofit clients and re-skinning per brand.
Will the donate button break in Outlook? +
No. The button is a bulletproof VML rectangle built for Outlook's Word engine, with a CSS fallback for Gmail and Apple Mail. It renders as a solid green clickable box in Outlook 365 desktop, not a text link. The rounded corners survive where a plain CSS button would not.
How do I match my client's brand colors, not the green in the demo? +
The green lives in two spots. Change the background-color on the header and footer sections, and the mj-button default inside mj-attributes. Pick a primary plus a single neutral. Do not add a third color for the button, or it competes with the donate CTA and weakens the ask.
Do I need to know HTML to launch this? +
No. Paste the exported HTML into Klaviyo or Mailchimp and swap the text and links in the editor. You only touch raw HTML to change the layout structure or add a merge tag the visual editor does not expose. Most nonprofit launches run from the text and link swap alone.
Want this on your client's brand?
Paste a client's site and we build a real, on-brand sample in clean, ESP-safe HTML you can paste into Klaviyo.
Get a free sampleMore templates
- Abandoned Cart email for Baby brandsBloom & Burrow
- Abandoned Cart email for Beauty brandsVeloura
- Abandoned cart email for coffee brandsSlow Bloom Coffee
- Abandoned cart email for course creatorsStoryboard Lab
- Abandoned cart email for fashion brandsSTUDIO HALDEN
- Abandoned Cart email for FintechVelt
- Abandoned Cart email for Jewelry brandsSolenne
- Abandoned Cart email for Outdoor brandsRidgebound
- Abandoned Cart email for Pet brandsPantry Hound
- Abandoned Cart email for Real Estate brandsRidgeline Realty
- Abandoned Cart email for RestaurantsSycamore Kitchen
- Abandoned cart email for skincare brandsMira
- Abandoned cart email for supplement brandsVerdant Labs
- Abandoned Cart email for Travel brandsSaltcove Resorts
- Abandoned cart emailMaison Riva
- Back-in-stock email for beauty brandsMarisol Skincare
- Back-in-stock email for coffee brandsNorthbank Coffee Roasters
- Back in Stock email for Fashion brandsMaris & Wren
- Back in Stock email for Jewelry brandsLumen & Vale
- Back in Stock email for Pet brandsWilder Hound
- Back-in-stock email for sneaker brandsPavement Supply Co.
- Back-in-stock email for supplement brandsFernwell Naturals
- Back in Stock email for Wine brandsHollis Ridge
- Back-in-stock emailAURE
- Birthday email for beauty brandsMaison Lumière
- Birthday email for Coffee brandsDaybreak Roasters
- Birthday email for EcommerceHearth & Hazel
- Birthday email for Jewelry brandsAurum & Oak
- Birthday email for Nonprofit brandsBrightwater Children's Fund
- Birthday email for Pet brandsPawly
- Birthday email for restaurantsCoppa Rossa
- Birthday email for Travel brandsTidehaven Resorts
- Birthday emailSMALL BATCH ROASTERS
- Browse Abandonment email for Baby brandsWren & Cub
- Browse Abandonment email for Beauty brandsHalden & Hue
- Browse abandonment email for fashionHalden Studio
- Browse Abandonment email for Fitness brandsRidgeline Strength
- Browse abandonment email for home goodsHalvor & Oak
- Browse abandonment email for supplement brandsHearthroot
- Browse Abandonment email for Travel brandsMeridian Voyages
- Browse abandonment emailHARTWELL
- Weekly digest emailCadence Weekly
- Event / webinar invite emailCadence
- Flash Sale email for Fashion brandsMarlowe Studio
- Flash sale emailMARA
- Loyalty VIP email for coffee brandsDriftwood Coffee Roasters
- Loyalty / VIP emailMAISON VERDE
- Newsletter email for creatorsMargins
- Newsletter email for ecommerceMarlow & Finch
- Newsletter email for fitness brandsRidgeline Strength
- Newsletter email for Jewelry brandsMaison Vermeil
- Newsletter email for Nonprofit brandsRiverbend Food Bank
- Newsletter email for real estate brandsCrestview Realty
- Newsletter email for restaurantsSaltmarsh
- Newsletter email for SaaSRelaybeam
- Newsletter email for Travel brandsDriftwood Voyages
- Editorial newsletter emailFrontier
- Order Confirmation email for EcommerceHearth & Hush
- Order confirmation emailHALCYON
- Post Purchase email for Coffee brandsDaybreak Coffee Roasters
- Post Purchase email for Fitness brandsForge Strength Club
- Post Purchase email for Jewelry brandsAurum Atelier
- Post-purchase email for Pet brandsBramble & Bark
- Post-purchase email for skincare brandsVesper
- Post-purchase email for supplementsNorthroot
- Post Purchase email for Travel brandsMarisol Retreats
- Post Purchase email for Wine brandsHollis Hollow Estate
- Post-purchase emailHale and Fern
- Price Drop email for Fashion brandsMarlowe
- Price drop emailWREN
- Product announcement emailLUME
- Product launch email for DTC beautyMarisol
- Product Launch email for EcommerceNorthbound Roast
- Product Launch email for Fitness brandsForge Athletics
- Product launch email for jewelry brandsMaison Velaire
- Product Launch email for Pet brandsBarkwell
- Product launch email for SaaSForgepath
- Product launch email for sneaker brandsFORM Athletics
- Product launch (drop) emailPULSAR
- Promotional (sale) emailOSSE
- Referral email for EcommerceSaltwater Skin
- Referral emailHEARTH
- Replenishment email for Supplement brandsRootwell
- Replenishment emailNORTHPEAK
- Review request email for course creatorsLoam Academy
- Review request email for ecommerceCove Skincare
- Review Request email for Jewelry brandsVela & Stone
- Review Request email for Nonprofit brandsRiverside Food Bank
- Review Request email for Real Estate brandsBridgepoint Realty
- Review request email for restaurantsOlive & Ember
- Review Request email for SaaSRecurlio
- Review request email for travel brandsNorthbound Lodge
- Review request emailHALCYON
- SaaS onboarding emailCadence
- Shipping Update email for EcommerceCoastline Coffee
- Shipping update emailHalftide
- Trial ending email (SaaS)Cadence
- Welcome email for baby brandsHazel & Fawn
- Welcome email for Beauty brandsMaris Botanica
- Welcome email for Coffee brandsBright Iron Coffee
- Welcome email for course creatorsLoaf & Crumb
- Welcome email for ecommerceNorthpine Coffee Roasters
- Welcome email for Fitness brandsForge Athletics
- Welcome email for Jewelry brandsMaison Aurelle
- Welcome email for Nonprofit brandsRiverbend Land Trust
- Welcome email for Outdoor brandsFoxpine Supply Co.
- Welcome email for Real Estate brandsCrestview Realty
- Welcome email for restaurantsOlea Trattoria
- Welcome email for SaaSForge
- Welcome email for supplement brandsFlorae Health
- Welcome email for Travel brandsCasa Marisol
- Welcome email for Wine brandsRedtail Cellars
- Welcome emailVerda
- Win Back email for Baby brandsOlive & Oat
- Win-back email for course creatorsPigment Studio
- Win-back email for ecommerceMarlowe Skin
- Win-back email for fintechHaven
- Win-back email for jewelry brandsCovelle
- Win Back email for Outdoor brandsSwitchback Outfitters
- Win Back email for Pet brandsNorthpaw
- Win-back email for real estateNorthbridge Realty
- Win Back email for RestaurantsSaltwood Kitchen
- Win-back email for subscription boxesHearthwood Coffee Co.
- Win-back email for supplement brandsFernwood Botanicals
- Win Back email for Wine brandsHollow Oak Estate
- Win-back (re-engagement) emailORSO