Email Client Market Share Report
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.
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)
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.
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 Mail | 54% | 46% | — | WebKit / Blink |
| Samsung Mail | 97% | — | 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 |
|---|---|---|---|---|---|
flexbox | Full | None | None | Partial | Full |
grid | Full | None | None | None | Full |
border-radius | Full | Full | None | Full | Full |
background-image | Full | Partial | VML only | Full | Full |
@media queries | Full | None | None | Full | Full |
max-width | Full | Full | None | Full | Full |
animation / transition | Full | None | None | None | Partial |
:hover | Full | None | Partial | Full | N/A (touch) |
prefers-color-scheme | Full | None | None | None | None |
<style> in <head> | Full | Full | Partial | Full | Full |
External <link> CSS | Full | None | None | None | None |
SVG | Full | None | None | Partial | Full |
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 recolor | Yes | Yes, via meta tag |
| Outlook (iOS) | Full recolor | No | No |
| Outlook (Android) | Partial inversion | No | No |
| Outlook (Desktop Win) | Full recolor | No | Limited |
| Gmail (Android) | No change | No | N/A |
| Gmail (iOS) | Partial inversion | No | No |
| Gmail (Web) | No change | No | N/A |
| Yahoo Mail (iOS) | Partial inversion | No | No |
| Samsung Mail | Full recolor | No | No |
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:blockis 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
widthandheightattributes on every image is mandatory. - Line-height rounding: Outlook rounds
line-heightvalues 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-colorandcoloron every cell. Missing either one triggers auto-inversion.
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 testing | 0 | Send and hope | 4.7 per campaign |
| Manual spot-check | 2-3 | Personal devices | 2.9 per campaign |
| Automated preview | 15-30 | Preview tool (screenshots) | 1.4 per campaign |
| Comprehensive | 90+ | Full rendering + interactive | 0.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