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.

Open the full email ↗ Get this on your brand
Live preview View HTML ↗

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 sample

More templates