Browse abandonment email for baby brands
Parents browse a sleep sack or stroller three or four times before they buy. This browse abandonment email nudges them back with stage and size reassurance instead of a hard discount, and hands you ESP-safe HTML to paste straight into Klaviyo or Mailchimp.
What makes this browse abandonment work for baby / kids
Browse abandonment fires when a shopper views a product page and leaves without adding to cart. In baby and kids, that is most of your traffic. Parents do not impulse-buy a $300 stroller or a crib. They research. They check the safety rating, read reviews from other parents, measure the nursery, ask their partner. The browse email is where you rejoin that conversation without killing the trust you built.
Trigger. Use Klaviyo's Viewed Product metric, or the Mailchimp Product Activity feed. Restrict the flow to browsers who did not trigger Added to Cart in the same session, and who have not already received a browse email in the last 14 days. Scope it to consideration purchases: strollers, car seats, cribs, sleep sacks, clothing sized by month, feeding gear. Skip low-ticket consumables like a single pack of wipes, where cart abandonment already handles the job.
Timing. Wait 6 to 12 hours after the last view. Baby purchases are deliberate, so a 15-minute send reads as surveillance and a 3-day send reads as forgotten. The sweet spot for most baby clients is early evening, 5 to 7 pm local, when parents open their phones again after the kids are asleep. One email is enough. If you send a second, cap it at 48 hours and never discount in it.
Offer. Resist the discount reflex. The strongest baby browse emails lead with reassurance: the safety certifications (JPMA, Greenguard Gold), the materials (GOTS organic cotton, food-grade silicone, BPA-free), and the exact stage fit (3 to 6 months, 6 to 12 months, or weight ranges like 12 to 18 lb). A first-browser discount of 5 to 10% can lift conversions, but bury it in the footer, not the headline. Headline reassurance outperforms headline discounts in this category by a wide margin.
Copy angle. Acknowledge the deliberation. "Still weighing it up?" lands better than "Come back and buy." Parents want to feel like a careful shopper, not a target. Pull one verified review from a parent in the same stage and quote it directly. Real example, from a sleep sack client: "Finally something that fits her chunky legs. Soft, and it washes well." The attribution reads "Verified buyer, size 3 to 6M."
CTA. Use low-pressure verb copy. "Take another look" and "See it again" beat "Buy now" and "Shop now" in our tests on baby clients, by roughly 15 to 20% more clicks. One button, one product, one job.
Numbers to expect. Baby and kids browse emails typically open at 28 to 38% and click at 2 to 4%. Revenue per recipient sits lower than cart abandonment, around $0.08 to $0.15, but browse volume runs 5 to 10 times higher. Across a list of 50,000 monthly browsers, that is $4,000 to $7,500 in incremental revenue a month from a single flow.
Why it renders in every inbox
Email clients are not browsers. Outlook desktop renders with the Word engine. Gmail strips the head and anything it thinks is suspicious. Apple Mail inverts colors in dark mode. The markup in this template handles all three without you thinking about it.
Nested tables, not divs or flexbox. The scaffold is three tables deep: a container table, a row table, a column table. This is the only layout method Outlook's Word engine parses reliably. Float, flex, and grid collapse.
Inline CSS on every element. Gmail ignores style blocks in the head when it wants to. Styles applied directly to each td, img, and a tag survive the trip. Inline CSS also keeps the document under Gmail's 102kb clip threshold, because the styles stay small and repeated rather than centralized in one large block.
Bulletproof VML button for Outlook. The Word engine ignores border-radius and padding on an a tag, so a rounded button turns into a plain blue link. The VML fix draws an actual rounded rectangle using mso styles, with the link baked in. The button keeps its shape and stays clickable in Outlook 2007 through 2024.
Live text, not images. Apple Mail and Gmail both block images by default on first open. If your headline is an image, the reader sees an empty box. Live text renders before images load, scales on mobile, and reads correctly for the screen readers parents switch on for one-handed 2 am feeds.
Dark-mode color-scheme meta. Two meta tags in the head, color-scheme and supported-color-scheme, tell iOS Mail and Apple Mail that the email supports both light and dark. Pair them with text colors that carry enough contrast to survive inversion. A pure black background flips to pure white and burns the eyes.
One mobile media query. A single @media only screen and (max-width: 480px) block stacks the columns, shrinks the hero image, and bumps down the font size. Keep it to one query because Gmail has a long history of mangling anything more complex in the head.
Web-font fallbacks. If you declare a web font, always give it a fallback stack like Georgia, serif. Outlook ignores web fonts entirely and shows Times New Roman if you do not catch it. The fallback keeps the email looking intentional in every client.
How to use it in Klaviyo or Mailchimp
This template is plain HTML. Either ESP can take it directly.
1. Copy the HTML. The export below is the full email, head and body, ready to paste.
2. Paste it in. In Klaviyo, create a new email and choose the HTML email type, or drag an HTML block into a drag-and-drop email. Paste the full HTML into the source view. In Mailchimp, start a campaign, choose Code your own, then Paste in code. Same HTML either way.
3. Swap brand, colors, and links. Open the HTML and find-and-replace four things: the logo image URL, the hex color values (the palette is three or four hexes, repeated), the product image URL, and any hardcoded links. Do this in a text editor before you paste, or in the ESP code view after.
4. Wire the merge tags. For the dynamic product, use the tag your ESP passes from the Viewed Product event. In Klaviyo that is {{ item.name }}, {{ item.price }}, and {{ item.url }}. Add a |default:'...' filter so the email renders cleanly in preview when no product data exists. In Mailchimp, use *|PRODUCT_NAME|* and *|PRODUCT_URL|* if you have product recommendations enabled, or hardcode the most-viewed product for a simple send. For the greeting, use {{ first_name|default:'there' }} in Klaviyo or *|FNAME|* in Mailchimp. Keep the unsubscribe tag native: {{ unsubscribe_url }} in Klaviyo, *|UNSUB|* in Mailchimp.
5. Test before you send. Run the email through your ESP preview at minimum, and ideally through a render tool. Check four things: Gmail web and the Gmail iOS app, Apple Mail in light and dark mode, and Outlook desktop. At 320 pixels wide on a phone, confirm the columns stack and the product image shrinks. With images blocked, confirm the headline still reads. In dark mode, confirm the body text stays legible.
For baby clients, one extra step is worth taking: a size and stage proofread. If the merge tag pulls a product, make sure the stage copy in the body matches the product's actual age range. A "0 to 3 months" line under a 6 to 12 month sleep sack is the kind of error that costs a sale.
Questions
Is this browse abandonment email free to use for client work? +
Yes. The HTML and the MJML source are free to copy, edit, and ship to baby and kids clients. No attribution and no license fee. Your ESP account and any product images you swap in are the only costs.
Will it render correctly in Outlook? +
Yes. The button is a VML rectangle, so Outlook's Word engine draws a real rounded, clickable button instead of a flat blue link. Layout runs on nested tables, so the columns stack in Outlook the same way they stack in Gmail and Apple Mail.
How do I change the colors to match my baby brand? +
Find-and-replace the hex codes in the HTML. The whole palette is three or four values: a warm brand color for the button and price, a deep green for the headlines and footer, and a soft off-white for the background. Swap those four and the email rebrands in under a minute. In the MJML source the same hexes sit inside mj-attributes at the top.
Do I need to know HTML to use this template? +
No. Copy the HTML, paste it into your ESP's code block, and edit the text and links in the visual preview. You only touch code to change a color or swap a merge tag, and both are find-and-replace jobs. A copywriter with no coding background can ship this in a single sitting.
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 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