Review request email for wine brands
Post-shipment review request built for wineries and wine clubs. Ask about the pour two weeks after delivery, when the bottle has settled, and you get tasting notes instead of a shrug.
What makes this review request work for wine / alcohol
A wine bottle needs two weeks before it drinks like itself. The same is true of the review request you send after it ships.
Trigger this email on "Fulfilled" in Klaviyo, then wait 14 days. Bottle shock from transit takes a week or so to blow off, and most customers will not decant on the Tuesday a delivery lands. Ask on day zero and you collect "Haven't opened it yet." Ask on day 14 and you collect a tasting note.
Wine clubs run a second, harder trigger: the annual or biannual allocation. There the review doubles as a retention signal. If a member reviews the spring allocation within a week of opening the first bottle, churn drops sharply on the next shipment. DTC wineries hit 28 to 34 percent open rates and 9 to 12 percent click rates on the 14-day post-fulfillment send. The same copy sent on delivery day sits around 4 percent CTR. Timing does all the work here.
Copy angle is sensory, not transactional. Wine is an experience good. The customer cannot judge it until they pour it, so the question has to be about the pour. "Rate your purchase" is the wrong frame. "Did the cherry hold after an hour, or go flat?" is the right frame. Name the varietal and the vintage in the subject: "How was the 2022 Estate Pinot, {{ first_name }}?" That single line beats "How was your order?" in every A/B we have run for estate clients.
The CTA is one button, one job: "Rate your bottle," deep-linked to the product page on the review form. Not "Learn more." Not a grid of three bottles.
The offer is where wine compliance bites. Do not tie a reward to a star rating. Google, Yelp, and Trustpilot all forbid conditioned incentives, the TTB and state ABC boards read any "free goods for a review" promotion as tied-house risk, and you corrupt the signal you are paying to collect. The compliance-safe move is a flat, unconditional thank-you that lands regardless of what the customer writes: 200 club points, waived shipping on the next allocation, or a complimentary tasting flight for two at the estate. State the offer in the email. Pay it out whether the review is five stars or one.
Compliance footer: "Please enjoy responsibly. You must be 21 or older to purchase." Send only to an age-gated list. Klaviyo requires confirmed 21+ for alcohol audiences. Verify before you schedule.
Why it renders in every inbox
Alcohol clients check email on phones, in Apple Mail dark mode, in Outlook at the office. The HTML has to survive all three.
Nested tables, not divs. Outlook 2007 through 2019 render mail with the Word engine. Word does not understand flexbox, CSS grid, or positioned divs. Every layout block is a <table>, every column a <td>. This template nests row tables inside a 600px container. That is the only structure Outlook reliably honors.
Inline CSS on every element. Gmail strips <style> blocks above 102KB and ignores class names in the Android app. Every font-size, color, and padding lives as a style attribute on the tag it controls. No external stylesheet. No CSS class you cannot see on the element.
A bulletproof VML button for Outlook. The Word engine ignores border-radius and padding on <a> tags, so a "modern" button renders as a flat text link with no fill. The fix is a VML roundrect wrapped around the link. Outlook draws a real filled, clickable rectangle. The MJML here compiles to that VML automatically, so the bordeaux "Rate your bottle" button holds its shape and fill in Outlook 365 on Windows, where most "pretty" email buttons collapse.
Live text, not images. The five-star rating row is Unicode characters, not a PNG. The headline and body copy are text. Outlook blocks images by default until the recipient clicks, so a review request that hides its CTA behind an image block gets nothing. Live text always renders.
A color-scheme meta for dark mode. Apple Mail and Outlook dark mode invert backgrounds when the sender declares "color-scheme: light dark." Without that meta tag, Apple Mail guesses, and your cream #FBF6EE background can render as muddy gray or invert to black and drag the body text with it. Two meta tags in the head fix the guesswork.
One mobile media query, one breakpoint at 480px. It stacks columns and scales the body copy down to 15px. More than one breakpoint and Yahoo Mail and the Gmail Android clipping logic start to fight. One is enough.
Web fonts with a system serif fallback. @font-face web fonts fail in Gmail entirely and render as Times in Outlook. The wordmark is a PNG with descriptive alt text ("Hollander Ridge Estate"). The body uses a Georgia, Times New Roman, serif stack, so the email reads as estate-luxury on every client without depending on a web font request that 60 percent of inboxes will ignore.
How to use it in Klaviyo or Mailchimp
Copy the HTML. Paste it. Wire it up.
In Klaviyo, open the Campaign or Flow email you want, drag an HTML block into the canvas, and paste. For a repeatable post-shipment flow, build it once as a template, then trigger on "Placed Order," add a 14-day time delay, and filter to "Fulfilled equals true" and "Items contains" your club SKU or varietal collection. The delay is the whole tactic.
In Mailchimp, start a campaign, choose "Code your own," then "Paste in code." Drop the HTML into the source window. Save as a template for the next club release.
Swap three things before you send. Replace the Hollander Ridge wordmark image URL with your own logo or label PNG. Replace the bordeaux #6B1F2E with your label's signature color in both the inline CSS and the mj-button background. Point the "Rate your bottle" href at your review form, whether that is Yotpo, Okendo, Junip, or a native Shopify product reviews widget on the product page.
Wire the merge tags so the email reads personal. Klaviyo: {{ first_name|default:'friend' }} for the greeting, {{ order.name }} for the order number, {{ line_items.0.title }} for the varietal ("2022 Estate Pinot Noir"), {{ shipping_address.city }} for the ship-to town. Mailchimp equivalents: *|FNAME|*, *|ORDER_NUMBER|*, *|PRODUCT_TITLE|*, *|MC:SHIP_CITY|*. Surface the varietal in the subject and the allocation number in the body ("Allocation A-2418") so a club member opening three boxes this season knows which one you are asking about.
Test before you schedule. Klaviyo "Preview" across a real customer profile. Email on Acid or Litmus for the client matrix if you have it. At minimum, send a live test to Gmail web, Apple Mail on iOS in both light and dark, and Outlook on Windows. Confirm the wine label image alt text reads cleanly when images are blocked, and that the 200 club points offer stays in the footer on a 375-pixel phone screen.
Questions
Is this wine review request template free to use? +
Yes. The MJML and compiled HTML are free for any winery, wine club, distillery, or spirits brand. Brand it, send it, ship it to your list. Attribution is not required.
Will the "Rate your bottle" button break in Outlook? +
No. The MJML compiles to a VML roundrect button, so Outlook 2007 through 2019 render a real filled rectangle with your bordeaux color and a working click, not the flat text link most email buttons collapse to in the Word engine.
How do I change the wine-red accent to my label's color? +
Swap #6B1F2E wherever it appears: the mj-button background-color, the label and stars inline styles, and the divider. One hex drives the CTA, the section labels, and the rating row. Keep the cream #FBF6EE background so dark mode has a defined light surface to anchor against.
Do I need to know HTML to send this? +
No. Paste the compiled HTML into Klaviyo or Mailchimp and edit the text in the editor like any other campaign. The only hand-off to a developer is wiring the review form URL and the varietal merge tags. If you can edit a Mailchimp campaign, you can edit this.
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 Home Goods brandsHearth & Hold
- Abandoned Cart email for Jewelry brandsSolenne
- Abandoned Cart email for Nonprofit brandsCedar Valley Food Bank
- 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 Real Estate brandsHearthside Realty
- 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 Fitness BrandsRep Club
- 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 email for Wine brandsHollow Ridge Estate
- 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
- Newsletter email for Wine brandsRusset Ridge Estate
- 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 Outdoor brandsHeadwall
- 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 pet brandsMaple & Mutt
- 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