Abandoned Cart Email for Outdoor & Gear Brands
Outdoor shoppers research hard, then bail at checkout to sleep on it. This abandoned cart flow brings them back with the held item, its spec sheet, and one clear CTA.
What makes this abandoned cart work for outdoor / gear
Outdoor gear has a research problem, not a price problem. A $389 tent. A $279 down hoodie. A $549 backpacking pack. Nobody abandons because it costs too much. They abandon because they are still comparing the Cirrus 2 against the Half Dome, still reading forum threads about floor condensation, still checking whether a 20D ripstop floor will survive a week on the Wind River High Route.
So the flow is built around reassurance, not discount.
**Trigger.** Fire the first email 45 to 60 minutes after the cart goes cold. Outdoor buyers shop in research sprints, and the window where they are still on the same device, still in the same browser tab mindset, is short. Wait the standard 2 to 4 hours and you lose the spec recall that makes Email 1 convert.
**Timing, three emails.** Email 1 at one hour: spec recap, no discount. Subject: "Your Cirrus 2 Tent is on hold." Email 2 at 24 hours: trail-side reviews and fit guidance. Subject: "1,200 hikers pitched the Cirrus 2. Here is what held up." Email 3 at three days: 10% off or free shipping, final. Subject: "We are putting the Cirrus 2 back on the shelf." Brands that lead with discount train buyers to wait. Lead with the held item and its specs. Most outdoor buyers convert on Email 1 or 2 without a code.
**Offer.** 10% off, capped, or free shipping. For gear above $200, free shipping converts nearly as well as 10% off and protects margin. Pair it with a warranty reminder: "Backed by our lifetime repair guarantee." Patagonia, REI, and Cotopaxi have trained outdoor buyers to expect repair programs. Name yours.
**Copy angle: the held item and its specs.** Outdoor buyers left a specific product with specific specs in the cart. Show it. Recite the spec sheet back at them, because that is exactly what they were reading when they bailed. Example Email 1 body for Ridgebound:
> Your Cirrus 2 Tent is on hold. > > Ridgebound Cirrus 2, 3-season, 2-person, freestanding. Trail weight 3 lb 4 oz. Floor area 28 sq ft in 20D ripstop. Packed size 19 by 6 inches. Two doors, two vestibules. $389, free shipping over $100. We will hold it 24 hours, then it goes back on the shelf.
That block beats "You left something behind" because it hands back the comparison data the buyer was building in their head.
**CTA.** One button, one verb. "Complete my order" outperforms "Shop now." Outdoor buyers already decided what they want. They do not need to shop. They need to finish.
Numbers to expect: open rates 45 to 55% on Email 1 (research-mode buyers open), click rates 4 to 7%, flow revenue 5 to 9% of total email revenue for a mid-size gear brand, AOV $180 to $350. Recovery runs higher than apparel because the cart is researched and the intent is specific.
Why it renders in every inbox
Outdoor brands send to inboxes that include Outlook-heavy corporate gift buyers and Apple Mail on iPhones read trailside at 5 a.m. The HTML has to survive all of them.
**Nested tables, not divs.** The template is built on nested HTML tables. No divs. No flexbox. No CSS grid. Gmail strips style blocks in some clients and ignores classes in others, so every style that matters sits inline on the element. Each row is its own table, each cell a td. This is how email was built in 2005 and it is still how email is built in 2026, because nothing else survives the inbox preprocessors.
**Inline CSS.** Font size, color, padding, background, and link color live on the element. The single style block holds only the dark-mode media query and the 480px mobile breakpoint, the two things you cannot inline.
**Bulletproof VML button for Outlook.** Outlook 2007 through 2024 renders HTML with Microsoft Word's engine, which does not support border-radius, padding on anchor tags, or CSS background colors on links. A bulletproof button uses VML and MSO conditional comments to draw a real rounded rectangle with a real clickable link. Without it, your forest green "Complete my order" button shows up in Outlook as a plain text link with no background. The compiled output includes the full conditional block.
**Live text, not images.** The spec list, the price, the CTA, and the held-item banner are real text. Images are reserved for the product photo and the logo. Live text renders at any size, loads instantly, and stays readable when images are blocked, which they are by default in many Outlook and Gmail setups. A spec sheet baked into a PNG disappears the moment images fail to load.
**Dark mode.** Apple Mail, Outlook, and the Gmail app all support dark mode, and they will invert dark text on a light background unless you tell them not to. The template sets color-scheme and supported-color-schemes meta tags in the head, plus a dark-mode media query that swaps the cream background for a deep forest tone. Your gear email does not blind a hiker reading mail in a tent.
**One mobile media query.** Outdoor buyers open on their phones, often the same phone they used to research the specs. One breakpoint at 480px stacks the product image above the spec block, hides the secondary nav, and grows the CTA. One query, no nested breakpoints, because every added query is another chance for an Android client to break.
**Web fonts with fallbacks.** If you brand Ridgebound in a condensed display face, load it with a fallback stack: your brand face, then Helvetica Neue, Arial, sans-serif. The brand face loads in Apple Mail and the Gmail app on iOS. Outlook and desktop Gmail ignore it and fall back. The email still looks intentional.
How to use it in Klaviyo or Mailchimp
**Klaviyo path.** Grab the rendered HTML for this template. In Klaviyo, open your abandoned cart flow email and drag in an HTML block where the product module goes, or build the whole email inside one HTML block. Paste. Then swap the static strings: brand name, the hex colors (forest green #2f5d3a, cream #f4f1ea, ink #1a2e22), the logo URL, and the cart link.
Wire the dynamic outdoor cart with Klaviyo event variables:
- Item name: `{{ item.product.name }}` - Item price: `{{ item.line_price|floatformat:2 }}` - Item image: `{{ item.product.images.0.src }}` - Product URL: `{{ item.product.url }}` - First name: `{{ person.first_name|default:'hiker' }}`
Wrap the product module in the line items loop, `{% for item in event.extra.line_items %} ... {% endfor %}`, so a cart holding a tent, a footprint, and a canister stove renders all three.
**Mailchimp path.** Start an abandoned cart automation, create the email, and under Design choose Code your own, then Paste in code. Paste the HTML. Swap brand, colors, logo, and links. Wire Mailchimp merge tags for the outdoor cart:
- First name: `*|FNAME|*` - Product name: `*|CART:PRODUCT_NAME|*` - Price: `*|CART:PRICE|*` - Cart URL: `*|CART:URL|*`
Mailchimp also ships a native abandoned cart content block that pulls line items automatically. Drop it inside your pasted shell if you do not want to hand-wire the repeat.
**Testing before you schedule.** Send a live test to a Gmail account (web and Android app), an Apple Mail account on an iPhone, and an Outlook.com account. Three clients cover roughly 85% of an outdoor list. Toggle dark mode in Apple Mail and Outlook and confirm the forest green CTA still reads and the cream does not invert to glare. Click the CTA from each client and confirm it lands on the populated cart, not the homepage. Run Litmus or Email on Acid if you have it. If you do not, the three-client manual test catches 90% of problems.
Questions
Is this abandoned cart template free for my outdoor brand? +
Yes. The HTML and MJML are free to copy, edit, and ship in Klaviyo or Mailchimp for any gear, camp, or apparel brand. Swap the Ridgebound branding for yours and use it across as many client accounts as you like.
Will the button and layout hold up in Outlook? +
Yes. The CTA is a bulletproof VML button wrapped in MSO conditional comments, so Outlook 2007 through 2024 draws it as a real rounded button with a working link. The layout is nested HTML tables, which Outlook renders correctly in the same places it breaks divs and flexbox.
How do I match the green and cream to my brand colors? +
Find your two brand hex codes. In the HTML, replace #2f5d3a (forest green) and #f4f1ea (cream) wherever they appear, plus the ink #1a2e22 for body text. In the MJML source, change them once inside the mj-attributes block and the whole email updates. The dark-mode media query carries its own values, so update those too if you change the palette.
Do I need to know HTML to use this? +
No. Copy the HTML, paste it into a Klaviyo HTML block or Mailchimp's Paste in code editor, and swap text and links in the visual editor. You only touch raw HTML if you want to rewire the product merge tags or add a second column for a tent-plus-footprint bundle.
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 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 Nonprofit brandsGreenhollow Land Trust
- 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