MiN8T
Home

On this page

  1. Market Share Overview
  2. Mobile vs Desktop Split
  3. CSS Support Matrix
  4. Rendering Quirks
  5. Testing Strategy
Report 10 min read

Email Client Market Share Report

Sarah Chen
Sarah Chen
Email Strategy Lead at MiN8T
Published March 2026

Understanding which email clients your subscribers use is the foundation of every design decision. A layout that renders flawlessly in Apple Mail may collapse in Outlook. A CSS animation that delights Gmail users may be stripped entirely in Yahoo. This report provides a current breakdown of email client market share, platform splits, CSS support, and the rendering quirks that affect real-world campaigns.

58%
Apple Mail share
28%
Gmail share
90+
Clients to test
4.2%
Outlook share

1 Market Share Overview

Apple Mail continues to dominate email opens, a position it has held since the iOS 15 Mail Privacy Protection update inflated open-rate tracking in late 2021. With pre-fetching enabled by default, Apple Mail registers an open for every delivered message, which inflates its apparent share. The adjusted figures below account for this by cross-referencing with click-through data and engagement signals.

Email Client Market Share (Q1 2026)

Apple Mail
58.2%
Gmail
27.8%
Outlook
4.2%
Yahoo Mail
3.1%
Samsung Mail
2.4%
Others
4.3%

Key changes from 2025: Gmail's share grew by 1.6 percentage points, driven by Android market expansion in emerging markets. Outlook's desktop share continued to decline (-0.8pp), while the Outlook mobile app gained (+0.3pp). Samsung Mail emerged as a distinct player at 2.4%, important because it uses its own rendering engine separate from the stock Android WebView.

i

Regional variation matters: In North America, Apple Mail's share is 64%. In Europe, it drops to 51%, with Gmail at 33%. In Southeast Asia, Gmail dominates at 52% with Apple Mail at 28%. Always segment your analytics by region before making design priority decisions.

2 Mobile vs Desktop Split

The mobile-desktop divide is not a single number. It varies dramatically by client, by industry, and by time of day. The aggregate split is 68% mobile / 24% desktop / 8% tablet, but the more useful breakdown is per-client.

Platform Split by Client

Client Mobile Desktop Tablet Primary Engine
Apple Mail (iPhone)76%, , WebKit
Apple Mail (Mac), 18%, WebKit
Apple Mail (iPad), , 6%WebKit
Gmail (Android)61%, , Blink (restricted)
Gmail (Web), 39%, Blink
Outlook (Desktop), 62%, Word (HTML engine)
Outlook (Mobile)38%, , Custom renderer
Yahoo Mail54%46%, WebKit / Blink
Samsung Mail97%, 3%Chromium WebView

The practical implication: if your audience skews toward Apple Mail, you are effectively designing for WebKit, which has excellent CSS support. If your audience is Outlook-heavy (common in B2B, enterprise, and financial services), you are designing for the Microsoft Word rendering engine, which strips most modern CSS properties.

!

Outlook's Word engine does not support border-radius, background-image on divs, flexbox, grid, max-width without VML wrappers, or margin: auto for centering. Over 40% of modern CSS properties are unsupported. If Outlook is more than 5% of your audience, you need a dedicated Outlook fallback strategy.

3 CSS Support Matrix

CSS support is the single most frustrating variable in email development. Unlike web browsers, which have converged on standards over the past decade, email clients remain wildly inconsistent. The following matrix covers the CSS properties that matter most for email layout and styling.

CSS Property Support by Client

CSS Property Apple Mail Gmail Outlook Desktop Yahoo Samsung
flexboxFullNoneNonePartialFull
gridFullNoneNoneNoneFull
border-radiusFullFullNoneFullFull
background-imageFullPartialVML onlyFullFull
@media queriesFullNoneNoneFullFull
max-widthFullFullNoneFullFull
animation / transitionFullNoneNoneNonePartial
:hoverFullNonePartialFullN/A (touch)
prefers-color-schemeFullNoneNoneNoneNone
<style> in <head>FullFullPartialFullFull
External <link> CSSFullNoneNoneNoneNone
SVGFullNoneNonePartialFull

The pattern is clear: Apple Mail and Samsung Mail support modern CSS generously. Gmail aggressively strips anything it considers non-essential. Outlook desktop uses an entirely different rendering paradigm based on Microsoft Word's HTML engine, which predates CSS3 entirely.

"Design for Gmail first, enhance for Apple Mail, fix for Outlook. That order gives you the widest safe baseline with the least rework.". Principal email developer, global SaaS company

Dark Mode Support by Client

Client Dark Mode Behavior Respects prefers-color-scheme Override Available
Apple Mail (iOS/Mac)Full recolorYesYes, via meta tag
Outlook (iOS)Full recolorNoNo
Outlook (Android)Partial inversionNoNo
Outlook (Desktop Win)Full recolorNoLimited
Gmail (Android)No changeNoN/A
Gmail (iOS)Partial inversionNoNo
Gmail (Web)No changeNoN/A
Yahoo Mail (iOS)Partial inversionNoNo
Samsung MailFull recolorNoNo
!

MiN8T advantage: MiN8T's built-in dark mode preview shows exactly how your email will render across Apple Mail, Outlook, and Gmail dark modes, side by side, before you send.

4 Rendering Quirks

Beyond CSS support, each major client introduces specific rendering behaviors that can break even well-tested designs. The following are the most impactful quirks documented in Q1 2026.

Gmail

  • Style block size limit: Gmail strips <style> blocks that exceed ~16KB after minification. Emails with extensive responsive breakpoints or web font declarations often hit this ceiling.
  • Class name prefix requirement: Gmail rewrites class names with a random prefix. Selectors that rely on specific class names for JavaScript interactivity will fail.
  • Image display:block gap: Gmail adds a small bottom margin to images unless display:block is explicitly set. This creates visible gaps in sliced image layouts.

Outlook Desktop (Word Engine)

  • DPI scaling: On high-DPI displays, Outlook scales images unpredictably. Setting explicit width and height attributes on every image is mandatory.
  • Line-height rounding: Outlook rounds line-height values differently than WebKit, causing text blocks to be taller or shorter than expected. Use pixel values, not unitless ratios.
  • Conditional comments: <!--[if mso]> blocks remain the only reliable way to deliver Outlook-specific fixes, including VML-based rounded buttons and background images.

Apple Mail

  • Mail Privacy Protection: Pre-fetches all images on delivery, regardless of whether the user opens the email. This inflates open tracking and skews time-of-open data.
  • Dark mode auto-recolor: Apple Mail recolors backgrounds and text unless you explicitly set both background-color and color on every cell. Missing either one triggers auto-inversion.
i

Pro tip: Maintain a living document of rendering quirks for your top 5 clients. Update it quarterly. The quirks change with every client update, and what worked 6 months ago may not work today.

5 Testing Strategy

Given the fragmentation documented above, testing is not optional. The question is how to test efficiently. Our survey found that teams fall into four testing tiers:

Tier Clients Tested Method Avg. Rendering Issues Found
No testing0Send and hope4.7 per campaign
Manual spot-check2-3Personal devices2.9 per campaign
Automated preview15-30Preview tool (screenshots)1.4 per campaign
Comprehensive90+Full rendering + interactive0.3 per campaign

Teams at the comprehensive tier catch 94% of rendering issues before send, compared to 38% at the manual spot-check tier. The cost difference is minimal: modern testing platforms process 90+ client previews in under 60 seconds.

  • Identify your top 10 email clients from your own analytics data
  • Test every campaign against at least those 10 before sending
  • Include at least one Outlook desktop version if B2B is part of your audience
  • Check dark mode rendering in Apple Mail and Outlook mobile
  • Validate link functionality in Gmail, which rewrites URLs through a proxy
!

MiN8T advantage: MiN8T renders previews across 90+ email clients and devices in one click. The preview panel is built directly into the editor, so you see rendering results without leaving your workflow. Issues are flagged automatically with suggested fixes.

Test Across 90+ Clients

Stop guessing how your emails render. MiN8T shows pixel-perfect previews across Apple Mail, Gmail, Outlook, Yahoo, Samsung, and 85+ more, in seconds.

Start Free Trial

Get the Next Report

We publish quarterly industry benchmarks. Subscribe to receive them first.

Related Reports

Report
State of Email Design 2026
Report
Dark Mode Adoption & Impact Report
Report
The ROI of Email Deliverability

Ready to start?

Stay up to date - the latest on email design and deliverability.

Let's get you building. Start your free account today.

MiN8T

108+ ESP integrations. Built-in deliverability. AI-powered design. Try MiN8T free today.

MiN8T

The email marketing operations platform.
Replace Stripo, ZeroBounce, BeeFree, Litmus,
and 4 more tools.
Inbox guaranteed across 108+ ESPs.

Product

  • API
  • Pricing
  • Integrations
  • How it works
  • Testimonials

Resources

  • Blog
  • Insights & Guides
  • Documentation
  • API Reference
  • DeliverIQ Docs
  • Deliverability Guide

Company

  • Contact
  • Support
  • Talk to Sales

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy
  • DPA
© 2026 MiN8T. All rights reserved. Powered by ABLA.
Trusted by 1,000+ teams 108+ ESP Integrations SOC 2 Compliant GDPR Ready