Home

Email Technical Constraints & Deliverability

Pillar: technical-constraints | Date: September 2026
Scope: The full technical stack required for emails to render correctly, reach inboxes, and meet accessibility standards: email client compatibility matrix (Gmail, Outlook 2016-2019-2021-365, Apple Mail, Yahoo, Samsung, Thunderbird) and the rendering quirks of each; dark mode CSS implementation (prefers-color-scheme, forced-color modes, meta color-scheme tag, class-based overrides, transparent vs. opaque image backgrounds); mobile-first responsive email patterns (fluid layouts, media queries, scalable type, touch target sizing); deliverability fundamentals (SPF, DKIM, DMARC configuration, warm-up strategy, bounce/complaint thresholds); spam trigger avoidance (image-to-text ratios, URL reputation, header hygiene, list hygiene); accessibility requirements (semantic HTML, ARIA roles, role=presentation on layout tables, alt text strategy, minimum contrast, screen reader testing). Also covers image-blocking default rates across clients and technical mitigation strategies (alt text styling, background-color fallbacks).
Sources: 12 gathered, consolidated, synthesized.

Execution Status

Operational workspace — record actions taken on this pillar (outreach sent, responses received, decisions reached) as the campaign progresses.

Action Date Owner Status Notes
     
     
     

Executive Summary

B2B rendering trap: Classic Outlook (the Word document engine used by Outlook 2007–2021 on Windows) controls 25–40% of B2B email opens while supporting zero modern CSS — no flexbox, no grid, no background-image, no CSS transforms or animations. Office 2024 extends the Word engine's support life to October 2029, meaning B2B senders must ship MSO conditional comments and VML fallbacks through at least 2027–2028 while simultaneously supporting Chromium-based New Outlook — two incompatible rendering engines under the same brand.[7][1]

Two rendering environments account for nearly 90% of tracked opens: Apple Mail at 48–62% (depending on measurement panel) and Gmail at 27–31%, both of which support modern CSS well enough for most design intent. The remaining share matters disproportionately to segment: classic Outlook's 7–9% B2C share understates its real weight for B2B senders, and Yahoo Mail, Samsung Email, and Thunderbird each introduce distinct parsing quirks with no shared standard. Apple Mail's Mail Privacy Protection (MPP) pre-loads images for approximately 55–60% of opens regardless of whether the recipient opens the email — making open rates unreliable and click rates the only trustworthy engagement signal for campaigns targeting Apple audiences.[1][8]

Gmail imposes two hard technical limits that regularly cause silent failures in production: HTML over 102 KB is clipped with a "View entire message" prompt, and a single syntax error in a CSS <style> block exceeding 8,192 characters invalidates the entire block. Gmail also strips position: absolute, align-items, justify-content, animations, filters, and external stylesheets — making inline styles mandatory for any property where rendering failure is unacceptable. Gmail's desktop web client applies no dark mode color changes regardless of OS setting, while its iOS app performs a full color invert (both light and dark backgrounds flip, uncontrollable via CSS), and its Android app performs only a partial invert.[1][2][10]

Dark mode affects approximately 35% of tracked email opens as of the last cross-client measurement (2022 — current penetration is plausibly higher). Email clients split into three fundamentally incompatible dark mode behaviors: no color change (Apple Mail without meta tags, Gmail Desktop, Yahoo), partial invert (Outlook.com, Outlook iOS/Android app — controllable via [data-ogsc] attribute targeting), and full invert (Gmail iOS app, Outlook 2021 Windows, Office 365 Windows — uncontrollable, both light and dark backgrounds flip). The @media (prefers-color-scheme: dark) CSS method reaches Apple Mail, iOS Mail, Outlook.com, Outlook 2019+ Mac, Samsung Mail, and Thunderbird — but is not recognized by Gmail Desktop, AOL, or Yahoo Mail. A critical color rule: never use pure #000000 or #FFFFFF — Outlook.com's partial inversion targets exact hex codes, and Apple Mail inverts pure white backgrounds when the color-scheme meta tags are present. Use #0E0E0E and #FAFAFA as substitutes.[2][10]

Authentication is no longer optional infrastructure — it is a deliverability gate. Google and Yahoo mandated SPF, DKIM, and DMARC for bulk senders exceeding 5,000 emails per day in February 2024. Gmail moved to outright rejection of non-compliant traffic in November 2025; Microsoft began rejecting with error code 550 5.7.515 in May 2025. Implementing DMARC at p=reject delivers a 10%+ deliverability boost with mainstream mailbox providers. SPF alone leaves a critical gap — it only validates the envelope-from address, not the header-from visible to users; only DMARC alignment closes that vulnerability. SPF also breaks under email forwarding and has a hard 10-DNS-lookup limit: exceeding it returns PermError, silently harming deliverability.[3][8]

Domain reputation follows a cliff-and-pit structure. Google's 2025 bulk sender guidelines set a complaint rate maximum of 0.1% before reputation degrades; the conservative operational target is <0.08%. At 0.3%, mailbox providers deny mitigation options outright. At 0.5%, recovery takes weeks. Stopping sends for 30+ days resets reputation entirely, requiring a full re-warmup cycle starting at 500–1,000 emails per day targeting only the last 30-day engaged audience. Warm-up advancement gates include <2% bounce rate, <0.1% complaints, and >25% open rate per week — metrics that must hold for 7+ days before volume can scale.[8][6]

Accessibility failures are near-universal: 99.88–99.89% of HTML emails contain "Serious" or "Critical" accessibility issues across both the 2025 EMC study (443,585 emails tested) and the 2026 study (376,348 emails tested). The single most common structural failure — present in 83.78% of emails — is layout tables missing role="presentation", causing screen readers to announce table structure as data-table navigation over visual email layouts. 47.88% of emails have images with no alt text. Only 4% of marketers consider semantic HTML or ARIA during production; only 14% use any accessibility testing tools; roughly 40% use none at all. The European Accessibility Act began enforcement in June 2025 with WCAG 2.2 as the legal standard, and 4,605 ADA lawsuits targeting accessibility violations have been recorded. Client EMC accessibility scores range from Apple Mail and Samsung Email (both 31/37) down to Outlook Desktop (11/37).[1][5]

Image handling directly affects both deliverability and rendering. Plain text consistently outperforms HTML templates by 15–25% in inbox placement for senders switching from HTML-heavy approaches; tracking pixels alone reduce inbox placement by 8–12% for cold outreach. ISPs apply heightened scrutiny when images exceed 40% of total email body content — the acceptable ceiling is 60% text / 40% image, with 80/20 being better. Total HTML must stay under 102 KB to avoid Gmail clipping; individual images should be under 50 KB for cold outreach; total email weight should be under 1 MB. Images must be hosted on a sender-controlled CDN domain with permanent URLs. Because Outlook Desktop blocks images by default in many configurations and Yahoo Mail blocks more aggressively than Gmail or Apple, styled alt text (with explicit font-size, color, and font-weight on the <img> tag) and background-color fallbacks on <td> cells behind images are required, not optional.[6][9]

71.5% of email recipients most often view emails on mobile phones, yet mobile-first development remains rare — only 11% of email developers use the mobile-first (min-width) approach. iOS enforces a minimum displayed font size of 13 px, automatically upscaling anything smaller in ways that can collapse multi-column layouts. Touch targets must be at least 44 × 44 px per Apple guidelines, and maximum single-column layout width is 600–640 px. The most client-resilient mobile pattern is the fluid hybrid method — nested tables with max-width constraints creating fluid-to-fixed layouts — which eliminates media query dependency and withstands the Samsung Email Exchange-account configuration that strips all @media support from approximately 2 in 5 Samsung Galaxy users who use that client.[4][12]

The practical implication is a mandatory three-layer build discipline: a foundation layer (table-based layout, inline CSS, HTML width/height/bgcolor attributes) that survives classic Outlook and screen readers; an enhancement layer (border-radius, box-shadow, background-image with VML fallbacks, web fonts with system fallbacks) for modern CSS-capable clients; and an advanced layer (dark mode via @media, CSS animations with GIF fallbacks) for full-featured clients. Minimum viable testing covers 8–10 configurations — Apple Mail iOS and macOS (both light and dark), Gmail web, iOS app, and Android app, Outlook classic and New, Outlook.com, Yahoo Mail web, Samsung Email with Exchange account configured, and all clients with images disabled. Authentication, warm-up, and list hygiene precede all content decisions in the deliverability priority order: a pre-warmed domain with clean SPF/DKIM/DMARC outranks any content optimization. Accessibility compliance is both a legal requirement since June 2025 and, given 99.88% industry failure rates, the lowest-effort differentiation available — adding role="presentation" to layout tables, descriptive styled alt text on every image, and a WCAG AA 4.5:1 contrast ratio on all text already places an email in the top 0.12% of the industry.



Table of Contents

  1. Email Client Market Share & Rendering Engines
  2. CSS Support Matrix by Client
  3. Client-Specific Rendering Quirks
  4. Dark Mode CSS Implementation
  5. Mobile-First Responsive Email Design
  6. Authentication Infrastructure: SPF, DKIM, DMARC
  7. BIMI — Brand Indicators for Message Identification
  8. Email Warm-Up Strategy
  9. Image Blocking & Spam Filter Avoidance
  10. Email Accessibility
  11. Progressive Enhancement Strategy & Testing
  12. Samsung Email: Extended Quirks

Section 1: Email Client Market Share & Rendering Engines

Apple Mail accounts for 62.26% of tracked email opens as of July 2026, with Gmail at 27.03% — together capturing nearly 90% of the measurable market.[1] A separate 2026 measurement puts Apple Mail at 48–53% and Gmail at 31%, reflecting methodological differences between measurement panels.[7] Approximately 71.5% of email recipients most often view emails on mobile phones; fewer than 25% primarily use a computer.[4]

Key finding: Two measurement panels place Apple Mail at 48–62% of opens, making it the dominant rendering environment — yet it receives the least negative press because it supports modern CSS fully. The real compatibility trap is classic Outlook (Word engine), which controls 7–9% of B2C opens but 25–40% of B2B opens and supports virtually no modern CSS.[7]

Market Share by Client (2025–2026 Data)

Client Share — Source A (Litmus, Jul 2026) Share — Source B (DEV Community 2026) Rendering Engine
Apple Mail (macOS + iOS) 62.26%[1] 48–53%[7] WebKit
Gmail (all surfaces) 27.03%[1] 31%[7] Blink (web/mobile); Gmail security preprocessor strips untrusted CSS[1]
Outlook Desktop — Classic (Word engine) (not available — combined with new Outlook) 7–9% B2C; 25–40% B2B[7] Microsoft Word document engine
Outlook New / Outlook.com (not available separately) (not available separately) Chromium[7]
Yahoo Mail (not available) (not available) Custom/proprietary[1]
Samsung Email (not available) (not available) Custom/proprietary[1]
Thunderbird (not available) (not available) Custom/proprietary[1]

Note: Source discrepancies in Apple Mail and Gmail share are attributed to different measurement methodologies and dates; both ranges are plausible. Combined market share figures not broken out by individual non-Apple/Gmail clients in either source.

Data gap: Per-client market share breakdown for Yahoo Mail, Samsung Email, and Thunderbird is absent from the corpus. Litmus Market Share data (monthly published) or Emailclientmarket.com would close this gap.

Rendering Engine Categories

Engine Type Clients CSS Capability Level Key Constraint
WebKit/Blink Apple Mail, Gmail web, New Outlook, Outlook.com High — modern web standards Gmail's security preprocessor strips untrusted CSS properties[1]
Microsoft Word (document engine) Outlook 2007–2021 Windows Severely limited — document formatting focus No flexbox, grid, transforms, animations, or native background-image; requires VML and table-based layouts[1][7]
Custom/Proprietary Yahoo Mail, Samsung Email, Thunderbird Unpredictable — requires individual testing Each uses different approach; no shared standard[1]

See also: Section 3: Client-Specific Rendering Quirks for per-client detail.


Section 2: CSS Support Matrix by Client

Classic Outlook (Word engine) has no support for flexbox, CSS grid, transforms, animations, or background-image — it requires table-based layouts and VML for any advanced visual effects. Microsoft has stated no plans to modernize the Word rendering engine, citing enterprise customer preference for stability.[1][7]

Key finding: Classic Outlook ends support in October 2026 (Office 2021 reaches end-of-support 13 October 2026), but Office 2024 extends support to October 2029 — Word-engine emails must be supported through at least 2027–2028 for B2B audiences.[1][7]

Universal CSS Properties (Work Everywhere)

Property CategoryPropertiesNotes
Typography font-family, font-size, font-weight, color, text-align Safe across all clients[1]
Box model basics width, height, padding, background-color, border Safe across all clients[1]
Table attributes cellpadding, cellspacing, bgcolor HTML attributes (not CSS); universally safe[1]

CSS Properties with Partial Support (Client-by-Client)

Property Apple Mail Gmail Classic Outlook (Word) New Outlook (Chromium) Outlook Mac (2019+) Yahoo Mail Samsung Email Thunderbird
border-radius ✓ Supported[1] ✓ Supported[1] ✘ None[1] ✓ Supported[7] (not available) ⚠ Partial[1] (not available) (not available)
background-image ✓ Supported[1] ✓ Supported[1] ✘ None (use VML)[1] ✓ Supported[7] (not available) ⚠ Partial/none[1] (not available) (not available)
max-width ✓ Supported[1] ✓ Supported[1] ✘ None[1] ✓ Supported[7] (not available) ✓ Supported[1] (not available) (not available)
@media queries ✓ Fully[1] ⚠ Desktop ignores; mobile supports[1][7] ⚠ Partial[1] ✓ Supported[7] ✓ Supported (prefers-color-scheme: dark confirmed)[10] ⚠ Partial, unpredictable[1] ⚠ Lost when Outlook/Exchange account configured[12] ✓ Supported (prefers-color-scheme: dark confirmed)[7]
margin ✓ Supported[1] ✓ Supported[1] ✘ Unreliable — use padding[1] ✓ Supported[7] (not available) (not available) ⚠ Works on <p>/headings; not on <div>/<table>[7] (not available)
flexbox (display: flex) ✓ Fully[7] ⚠ display:flex only; align-items/justify-content stripped[1] ✘ None[1] ✓ Supported[7] (not available) ✘ None[1] (not available) (not available)
CSS animations ✓ Fully[7] ✘ Stripped[1] ✘ None[1] ✓ Supported[7] (not available) ✘ None[1] ✘ CSS keyframes not supported (transitions work)[12] (not available)
CSS position: absolute ✓ Supported[1] ✘ Stripped[1] ✘ None[1] (not available) (not available) (not available) ✘ Not supported despite relative/fixed working[12] (not available)
Web fonts (@font-face) ✓ Supported[7] ⚠ Limited[7] ✘ Falls back to Times New Roman[7] ✓ Supported[7] (not available) (not available) (not available) (not available)
Data gap: Property-level CSS support for Outlook Mac (2019+), Samsung Email, and Thunderbird is absent from the corpus for most properties. What is confirmed from corpus sources: Outlook Mac (2019+) uses native macOS rendering — not the Word engine — and supports modern CSS closer to Apple Mail than to Classic Outlook; @media (prefers-color-scheme: dark) is confirmed supported (src-10). Samsung Email property-level detail is documented in Section 12. Thunderbird supports @media (prefers-color-scheme: dark) (src-7); other properties are unverified in the corpus. Verify current per-property support via caniemail.com or the Litmus test suite. Flagged by improve round on Email Technical Constraints & Deliverability — pending re-gather pass.

Properties Never Supported (Any Client)

JavaScript, external stylesheets (<link rel="stylesheet">), @import rules, iframes, video/audio embeds — across all major email clients.[1][7] New Outlook (Chromium) supports many of these, but classic Outlook does not. Note: CSS position: absolute is not universally unsupported — it is stripped by Gmail and Classic Outlook and absent from Samsung Email, but is fully supported in Apple Mail; see the per-client matrix above.[1][12]


Section 3: Client-Specific Rendering Quirks

Gmail

Gmail clips emails at approximately 102 KB of HTML (images do not count toward this limit) and enforces an 8,192-character limit on CSS in <style> blocks — a single syntax error invalidates the entire block.[1][7]

Gmail BehaviorDetail
HTML size clip~102 KB; email truncated with "View entire message" link[1]
CSS block limit8,192 characters in <style>; one error = full block dropped[1]
Stripped CSSExternal stylesheets, @import, positioning, align-items, justify-content, grid, transforms, animations, filters, background-image in <style> blocks[1]
Retained CSSBox model, background-color, fonts, display:flex (property only), border-radius, max-width[1]
Media query behaviorDesktop ignores; mobile app supports[1][7]
Image handlingAuto-displays from known senders; proxies via Google CDN (obscures device data)[9]
Inline style requirementCritical styles must be inline for reliable rendering[1]
Dark mode (iOS app)Full color invert — both light and dark backgrounds flip[2]
Dark mode (Android app)Partial invert — only light backgrounds convert to dark[2]
Dark mode (desktop web)No color changes regardless of OS dark mode setting[10]

Apple Mail

Apple Mail's Mail Privacy Protection (MPP) affects approximately 55–60% of all email opens — it pre-loads images regardless of whether the recipient opens the email, making open-rate data unreliable.[1][8] Apple Mail scores 31 of 37 on the EMC accessibility benchmark and is considered the most standards-compliant email client.[1][7]

Apple Mail BehaviorDetail
MPP open-rate impactPre-loads images for ~55–60% of opens; rely on clicks for engagement signals[1][8]
CSS supportFlexbox, grid, animations, external stylesheets — full modern CSS[7]
Retina displayExcellent 2× resolution support — create images at double intended display size[4]
Dark modeFull control via @media (prefers-color-scheme: dark)[10]
Pure white (#ffffff) inversionTriggers inversion when color-scheme meta tags are present[2]
EMC accessibility score31 of 37[1]

Outlook Desktop — Classic (Word Engine, Outlook 2007–2021 Windows)

Classic Outlook's 120 DPI scaling issue is a reliable production failure point: Windows DPI scaling at 120% causes Outlook to enlarge pt values but not HTML pixel dimensions — producing distorted images and misaligned layouts.[7] Classic Outlook scores only 11 of 37 on the EMC accessibility benchmark.[1]

Classic Outlook BehaviorDetail
120 DPI scalingEnlarges pt values but not pixel width/height → distortion. Fix: declare PixelsPerInch:96 in XML prolog, define widths in both HTML attributes and inline styles, add VML conditionals[7][4]
Conditional comments<!--[if mso]> … <![endif]--> required for Outlook-specific code; ignored entirely by New Outlook[1]
Layout requirementTable-based layouts with HTML width/height attributes mandatory[1]
Background imagesNot natively supported; requires VML workaround[1]
Web fontsNot supported; falls back to Times New Roman[7]
Dark mode behaviorInconsistent inversion; logos designed for light backgrounds can become invisible[7]
Market relevance7–9% of B2C opens; 25–40% of B2B opens — maintain MSO conditional comments through 2027–2028[7]
End of supportOffice 2021 reaches end-of-support 13 October 2026; Office 2024 supported until October 2029[1]
EMC accessibility score11 of 37[1]
Animated GIFsFreezes on first frame — design meaningful first frame; provide static fallback[1]

VML Workaround for Background Images

<!--[if mso]>
<v:rect xmlns:v="urn:schemas-microsoft-com:vml" ...>
<![endif]-->

[1][7]

Outlook New / Outlook.com (Chromium Engine)

As of January 2025, Business Standard/Premium users were auto-migrated to New Outlook, creating what the corpus calls a "2025–2026 peak dual-Outlook pain" period — codebases must simultaneously support the Word engine (classic) and Chromium (new).[7]

New Outlook BehaviorDetail
Rendering engineChromium — ignores MSO conditional comments entirely[7]
CSS supportFlexbox, media queries, web fonts, border-radius — full modern CSS[7]
Dark modePartial invert (Outlook.com): only light backgrounds convert to dark; dark elements preserved[2]
[data-ogsc] targetingWhen Outlook webmail forces dark mode, original colors stored in data-ogsb/data-ogsc attributes — usable for targeting[10]

Yahoo Mail

Yahoo Mail scores 16 of 37 on the EMC accessibility benchmark and blocks images more aggressively than Gmail or Apple.[1]

Yahoo Mail BehaviorDetail
Image blockingBlocks images more aggressively than Gmail or Apple — robust alt text is critical[1]
height → min-height conversionConverts CSS height to min-height — can break fixed-height layouts[7]
!important handlingSpace before !important gets stripped — syntax must be tight[7]
Comment proximity bugCSS after HTML comments removed[7]
Media query supportPartial and unpredictable[1]
Dark modeNo dark mode inversion[7]
EMC accessibility score16 of 37[1]

Samsung Email

Bundled with Android 6.0+ Samsung Galaxy devices; approximately 2 out of 5 Galaxy users use it (non-Gmail accounts).[12] Three production-critical quirks:

See Section 12 for the full Samsung quirks reference (keyframe animations, margin limitations, auto-linking, body ID replacement, and targeting workarounds).

Thunderbird

Thunderbird provides full dark mode control via @media (prefers-color-scheme: dark).[7]

Data gap: Thunderbird EMC accessibility score, CSS support matrix detail, and market share figure are absent from the corpus. Email on Acid or Litmus test suite data would close this gap.

Section 4: Dark Mode CSS Implementation

Approximately 35% of tracked email opens used dark mode as of 2022 (the most recent cross-client measurement in the corpus; current penetration is plausibly higher but unverified here).[10] Dark mode support is now a rendering requirement, not an enhancement.

Key finding: Email clients split into three fundamentally different dark mode behaviors: no change (Apple Mail without meta tags, Gmail desktop, Yahoo), partial invert (Outlook.com, Outlook app iOS/Android), and full invert (Gmail iOS app, Outlook 2021 Windows, Office 365 Windows). Full-invert clients override custom colors entirely, requiring separate workarounds per client category.[2][10]

Three Client Dark Mode Approaches

ApproachClients@media Controllable?
No color changes Apple Mail (without meta tags), Gmail Desktop, AOL, Yahoo Mail N/A — email renders as-coded regardless[2][10]
Partial invert Outlook.com, Outlook app (iOS/Android) ⚠ Partial — via [data-ogsc] attribute targeting[2][10]
Full invert Gmail app (iOS), Outlook 2021 (Windows), Office 365 (Windows) ✘ Uncontrollable — both light and dark backgrounds flip[2][10]

Required Meta Tags

<meta name="color-scheme" content="light dark">
<meta name="supported-color-schemes" content="light dark">

These tags signal that the message supports both color schemes. Critical caveat: pure white (#ffffff) backgrounds in Apple Mail trigger inversion when these meta tags are present.[2][10]

Primary CSS Method: @media (prefers-color-scheme: dark)

Compatible with: Apple Mail, iOS Mail, Outlook.com, Outlook 2019+ (Mac), Samsung Mail, Thunderbird.[2][10] Not recognized by Gmail Desktop, AOL, or Yahoo Mail.[10]

@media (prefers-color-scheme: dark) {
  .darkmode { background-color: #272623 !important; }
  h1, h2, p, span, a, b { color: #ffffff !important; }
  .link { color: #91ADD4 !important; }
  .light-img { display: none !important; }
  .dark-img { display: block !important; }
}

[10]

Outlook-Specific Targeting: [data-ogsc] / [data-ogsb]

For Outlook app (Android) and Outlook.com partial-invert support — duplicate @media styles with these attribute prefixes.[10]

[data-ogsc] .darkmode { background-color: #272623 !important; }
[data-ogsc] h1 { color: #ffffff !important; }
[data-ogsc] .dark-img { display: block !important; }

Client Dark Mode Support Matrix (February 2025)

Client HTML Treatment @media (prefers-color-scheme) Support [data-ogsc] Support
Apple Mail (macOS) No change* ✓ Yes ✘ No
iPhone/iPad (iOS 16) No change* ✓ Yes ✘ No
Outlook.com Partial invert ✘ No ⚠ Partial
Outlook 2021 (Windows) Full invert* ✘ No ✘ No
Gmail app (iOS) Full invert* ✘ No ✘ No
Gmail app (Android) Partial invert ✘ No ✘ No
Gmail Desktop (web) No change ✘ No ✘ No
Yahoo Mail No change ✘ No ✘ No
Samsung Mail (not available) ✓ Yes (when not on Exchange config)[10] ✘ No
Thunderbird (not available) ✓ Yes[7] ✘ No

*Pure white (#ffffff) backgrounds in Apple Mail trigger inversion when color-scheme meta tags present.[2] Source: Litmus, February 2025.[10]

Critical Color Rule: Avoid Pure Black/White

AvoidUse InsteadReason
#000000 (pure black) #0E0E0E Outlook.com partial inversion targets exact hex codes[10]
#FFFFFF (pure white) #FEFEFE or #FAFAFA (off-white) Triggers Apple Mail inversion when meta tags present; Outlook.com targeting[10][7]
High-contrast black/white pairs Off-whites (#FAFAFA) + dark greys (#222222) Reduces inversion impact across multiple clients[10]

Image Techniques for Dark Mode

TechniqueImplementation
Show/hide image switching .light-img { display: none !important; } .dark-img { display: block !important; } inside @media block[2][10]
Transparent PNG outlines Apply translucent outline/stroke to transparent PNGs for legibility on both backgrounds[2]
Midtone color design Use midtone colors that contrast against both light and dark backgrounds without switching[10]
APNG over GIF Replace GIFs with APNGs for better transparency support in dark mode[10]
Gmail iOS — CSS Blend Mode mix-blend-mode + Gmail class-based targeting (Rémi Parmentier technique) — retains original colors but may conflict with user dark mode preferences[2][10]
Outlook Windows — VML Gradient MSO-specific gradient properties + VML techniques to control colors in full-invert clients (Nicole Merlin technique)[2][10]
Glow / stroke effects on icons Apply glow or stroke effects to icon assets for legibility on both light and dark backgrounds[2][10]
Background shapes for stroke illustrations Add background shape elements behind stroke-based illustrations to ensure visibility when background color inverts[2][10]

Forced Colors Mode (@media forced-colors)

Data gap: The @media (forced-colors: active) CSS media query — which targets Windows High Contrast Mode (WHCM) and the OS-level Forced Colors accessibility setting — is absent from the corpus. Coverage needed: which email clients honor forced-colors (primarily Windows-based clients such as classic Outlook and Outlook on Windows), the forced-color-adjust: none escape hatch and when it is appropriate, and how forced-color rendering interacts with email client preprocessing pipelines. A data-gap callout is placed here in lieu of corpus-sourced content. Flagged by improve round on Email Technical Constraints & Deliverability — pending re-gather pass.

See also: Transactional Email Design for dark mode design intent; this section covers CSS implementation mechanics only.


Section 5: Mobile-First Responsive Email Design

71.5% of email recipients most often view emails on mobile phones; fewer than 25% primarily use a computer.[4] iPhones enforce a minimum displayed font size of 13 pixels — anything smaller gets upscaled automatically, which can break multi-column layouts.[4]

Key finding: Only 11% of email developers use the mobile-first (min-width) approach; most use desktop-first max-width. The fluid hybrid method — nested tables with max-width creating fluid-to-fixed layouts — practically eliminates the need for media queries and is the most client-resilient pattern available.[4]

Layout Fundamentals

ParameterValueSource
Maximum layout width 600–640 px (single-column) [4]
Minimum touch target size 44 × 44 px (Apple guidelines) [4][1]
Minimum font size (iOS enforcement) 13 px [4]
Mobile-first developer adoption 11% of email developers [4]
Minimum contrast ratio (WCAG AA) 4.5:1 for normal text [4]

Media Query Breakpoints

@media only screen and (max-device-width: 640px) { }
@media only screen and (max-device-width: 479px) { }

Use !important declarations to ensure mobile styles take precedence. Desktop-first (max-width) approach is the industry standard; mobile-first (min-width) is used by only 11% of email developers.[4]

Responsive Table Pattern

@media only screen and (max-width: 479px) {
  .tablescale { width: 100% !important; margin: 0 !important; }
}

Converts two-column layouts to single-column on small screens.[4]

Styling Architecture

Email requires both embedded styles (in <style> tags within <head>, for media queries and overrides) and inline styles directly on elements — many clients strip the <style> block entirely.[4] Build fluid layouts using percentages rather than fixed pixel widths to accommodate varying Android device sizes.[4]

Image Optimization for Mobile

RequirementImplementation
Retina sharpness Create images at 2× intended display size (e.g., 1200 px wide for 600 px display)[4]
Background image scaling Use background-size: cover; implement VML for Outlook compatibility[4]
Samsung viewport fix See Section 12 for full Samsung quirks and workarounds.
Mobile-specific images Hide desktop images and show mobile alternatives via media queries with display:none[4]

Form Inputs on Mobile

Use top-aligned labels to prevent viewport displacement; apply input type="email" to trigger mobile keyboards with @ symbol; set fluid widths (~80% viewport width); include <meta name="viewport" content="width=device-width, user-scalable=no">.[4]


Section 6: Authentication Infrastructure: SPF, DKIM, DMARC

Google and Yahoo began requiring SPF, DKIM, and DMARC for bulk senders sending more than 5,000 emails per day in February 2024.[3][6][8] Gmail rejects non-compliant traffic outright as of November 2025.[8] Microsoft introduced similar requirements for Outlook in May 2025, rejecting non-compliant authentication with error code 550 5.7.515.[3][8]

Key finding: Implementing DMARC at p=reject boosts email deliverability by 10% or more with mainstream mailbox providers including Gmail. SPF alone leaves a critical gap — it only validates the envelope-from address, not the header-from address visible to users. Only DMARC alignment closes that vulnerability.[3]

SPF (Sender Policy Framework)

SPF is an IP whitelist mechanism — it "allows only authorized senders to send on behalf of a domain."[3]

SPF ParameterDetail
Record structure v=spf1 [mechanisms] [qualifiers] -all[3]
Mechanisms IP4, IP6, A, MX, PTR, EXISTS, INCLUDE, ALL[3]
Qualifiers + (pass), ? (neutral), ~ (softfail), - (fail)[3]
DNS lookup limit Maximum 10 DNS lookups per SPF check — exceeding returns PermError, harming deliverability[3]
Critical limitation Validates envelope-from only, not header-from visible to users[3]
Forwarding failure SPF breaks with email forwarding when intermediate server IPs are not whitelisted[3]

DKIM (DomainKeys Identified Mail)

DKIM uses asymmetric cryptography to detect message tampering — "enables the receiver to check if email headers and content have been altered in transit."[3]

DKIM ParameterDetail
Record structure v=DKIM1; k=rsa; t=s; p=[BASE64_PUBLIC_KEY][3]
Signature algorithm Typically rsa-sha256 (a= tag)[3]
Key header tags a= (algorithm), d= (domain), s= (selector), b= (signature value), bh= (body hash)[3]
Critical limitation Does not require signing domain (d=) to match header-from — only DMARC alignment closes this[3]

DMARC (Domain-based Message Authentication, Reporting & Conformance)

DMARC "builds on the widely deployed SPF and DKIM protocols, and adds domain alignment checking and reporting capabilities."[3]

DMARC ParameterDetail
Record structure v=DMARC1; p=[policy]; rua=mailto:[addr]; ruf=mailto:[addr][3]
Publishing location _dmarc.yourdomain.com[3]
Policy: p=none Monitoring only — no enforcement action[3]
Policy: p=quarantine Failed messages routed to spam folder[3]
Policy: p=reject Failed messages fully blocked; deliverability boost of 10%+ with major providers[3]
Alignment: strict Domains must match exactly (example.com ≠ mail.example.com)[3]
Alignment: relaxed Organizational domains must match (example.com and mail.example.com both align)[3]

External Destination Verification (EDV)

When rua or ruf reporting addresses point to a domain other than the sending domain, the receiving domain must explicitly authorize DMARC report delivery. Omitting this record causes silent delivery failure — reports never arrive at third-party reporting addresses.[3]

EDV ParameterDetail
Record location [sending-domain]._report._dmarc.[receiving-domain][3]
Record value v=DMARC1[3]
When required Any time rua/ruf point to a different domain than the sender's; each external domain requires its own EDV record[3]

Industry Mandates Timeline

DateProviderRequirement
February 2024 Google + Yahoo SPF, DKIM, DMARC required for bulk senders >5,000/day[3][8]
May 2025 Microsoft Authentication requirements for Outlook; rejects with 550 5.7.515[3][8]
November 2025 Gmail Outright rejection of non-compliant traffic[8]

Implementation Sequence (9 Steps)

  1. Set up SPF → verify DNS propagation (~1 hour)[3]
  2. Set up DKIM → publish records for each selector[3]
  3. Publish DMARC at p=none for monitoring[3]
  4. Analyze aggregate reports for authentication failures[3]
  5. Rectify legitimate unauthenticated streams (update SPF/DKIM)[3]
  6. Wait ~1 month with all legitimate sources passing[3]
  7. Transition to p=quarantine[3]
  8. Reach p=reject after ~3 months stable operation[3]
  9. Ongoing monitoring[3]

Provider-Specific Actions on Unauthenticated Mail

ProviderAction on Unauthenticated Mail
Office 365 Routes unauthenticated emails to spam by default[3]
Gmail Displays red question mark on unverified senders; rejects non-compliant traffic outright from November 2025[3][8]
Microsoft Outlook Rejects with error "550 5.7.515"[8]
Yahoo/AOL Throttling shows as 421 temporary failures[8]

Section 7: BIMI — Brand Indicators for Message Identification

BIMI lets a sending domain publish a logo in DNS that mailbox providers display beside authenticated emails. Reported outcomes: open rate boost of 39%, brand recall improvement of 44%, buying decision influence of 32%.[11] Note: these figures are self-reported by the BIMI Group, the industry body promoting BIMI adoption. Independent third-party verification of these outcomes is not available in the corpus.

Key finding: As of November 2024, Apple Mail stopped accepting Entrust-issued VMC certificates. DigiCert is the only safe VMC issuer for campaigns targeting Apple Mail audiences.[11]

Prerequisites and Dependency Chain

DMARC enforcement must come first — p=quarantine or p=reject covering 100% of mail is required before BIMI will be honored.[11] (See Section 6: Authentication Infrastructure above for the full DMARC implementation sequence.)

BIMI Record Structure

Publish a TXT record at default._bimi.yourdomain pointing to an SVG logo (and optionally a Mark Certificate).[11]

Mark Certificate Types

Certificate TypeTrademark Required?Trust SignalingGmail Verified CheckmarkSafe CA (as of Nov 2024)
VMC (Verified Mark Certificate) Yes — registered trademark High ✓ Yes[11] DigiCert (required for Apple Mail audiences — Entrust banned from Nov 15, 2024); GlobalSign also valid for non-Apple Mail use cases[11]
CMC (Common Mark Certificate) No Lower — no trademark binding ✘ No[11] (not available)[11]

Mailbox Provider Support

ProviderBIMI SupportVMC Required?
Gmail ✓ Yes[11] Yes — for verified blue checkmark[11]
Yahoo / AOL ✓ Yes[11] (not available)[11]
Apple Mail ✓ Yes — use DigiCert VMC only[11] Yes — Entrust VMCs banned from Nov 15, 2024[11]
Outlook ⚠ Limited / developing[11] (not available)[11]

Section 8: Email Warm-Up Strategy

At 0.5% spam complaint rate, recovery from domain reputation damage takes weeks.[8] Stopping sending for 30+ days resets reputation — requiring a full re-warmup cycle.[8]

Key finding: Google's 2025 bulk sender guidelines set a complaint rate maximum of 0.1% before domain reputation degrades. The conservative operational target is <0.08% (per SmartLead data). The ineligibility cliff — where mailbox providers deny mitigation — is 0.3%.[8][6]

5-Week Volume Ramp Schedule

Week Daily Volume Hourly Cap Target Audience Advancement Criteria
1 500–1,000 100–200/hr 30-day engaged users <2% bounces, <0.1% complaints, >25% opens[8]
2 2,000–5,000 ~500/hr 30-day + recent opt-ins Stable bounces, rising reputation[8]
3 10,000–15,000 1,000–2,000/hr 60-day engaged >85% seed inbox placement, no throttling[8]
4 20,000–30,000 3,000–5,000/hr Broader active list All metrics stable 7+ days[8]
5+ 50,000–100,000 5,000–10,000/hr Full active list Stable 14+ days[8]

Critical Metric Thresholds

MetricHealthyWarningCritical / Action Required
Bounce rate <2% 2–4% >4% — pause and run verification audit[8]
Spam complaint rate <0.08% (conservative)[6] / <0.1% (operational)[8] 0.1–0.3% >0.3% — providers deny mitigation; stop immediately[8]
Open rate (warmup period) >25% (not available) (not available)[8]
Click rate >2% (not available) (not available)[8]
Unsubscribe rate <0.5% (not available) (not available)[8]

Note on complaint rate discrepancy: raw_6.md targets <0.08%; raw_8.md targets <0.1%. Both are from different sources. Use <0.08% as conservative operational target.

Audience Segmentation Windows

Warmup PeriodEligible AudienceAlways Exclude
Weeks 1–2 Last 30 days of opens/clicks[8] 90+ day inactive, role addresses, purchased lists, prior hard bounces[8]
Weeks 3–4 Last 60 days engagement[8]
Week 5+ Last 90 days engagement[8]

Infrastructure Prerequisites

CategoryRequirement
Authentication SPF (including relay IPs), DKIM (signed and aligned), DMARC (minimum p=none with reporting), PTR/reverse DNS for dedicated IPs, TLS for outbound connections[8]
Suppression Hard bounce suppression list, bounce-processing loop (soft vs. hard), one-click unsubscribe headers (RFC 8058)[8]
Monitoring Google Postmaster Tools configured, seed-list monitoring[8]

Provider-Specific Throttle Signals (2025–2026)

ProviderThrottle SignalAction
Gmail "421 4.7.0" deferrals[8] Hold 48–72 hours[8]
Yahoo/AOL "421 temporary failures"[8] Reduce volume 50%[8]
Yahoo/AOL CFLoop registration recommended — register with Yahoo/AOL Complaint Feedback Loop to receive spam complaint signals directly[8] Complements the 421 throttle monitoring; provides direct complaint signal visibility not available through general bounce logs[8]
Microsoft "550 5.7.515" rejection[8] SmartScreen scoring — no public dashboard; known for slow-burn reputation issues[8]
Apple Mail Binary inbox vs. spam filtering[8] MPP masks open rates — rely on clicks over opens[8]
Any provider Blocklist hit[8] Pause immediately[8]

Post-Warmup Maintenance Rules


Section 9: Image Blocking & Spam Filter Avoidance

Images alone do not automatically flag emails as spam — ISPs evaluate multiple signals simultaneously. "Emails with a single small image and a strong sender reputation see virtually no deliverability difference compared to plain text emails."[6][9] The trigger occurs when image content becomes excessive — see the table below for the specific ratio threshold at which ISPs begin heightened scrutiny.[6]

Key finding: Plain text consistently outperforms HTML templates, with 15–25% improvements in inbox placement rates for senders switching to plain text approaches.[6] Tracking pixels alone reduce inbox placement by 8–12% for cold outreach.[6]

Six Image-Related Spam Signals

SignalThreshold / Rule
Image-to-text ratio Keep images below 40% of total email body content[6]
Total email file size Under 102 KB to avoid Gmail clipping[6]
Number of images One image is optimal; five or more signals newsletter-style content[6]
URL / hosting domain reputation Host images on your own domain — never third-party sites[6].
Data gap: Standard operational practice is to verify both the sending domain and any linked URLs against major blacklists (e.g., MXToolbox, Google Safe Browsing, Barracuda Central) before campaigns, but specific blacklist-checking tools are not named in the corpus. Corpus only confirms that hosting domain reputation affects deliverability. Flagged by improve round on Email Technical Constraints & Deliverability — pending re-gather pass.
Tracking pixels Reduce inbox placement by 8–12% for cold outreach[6]
Alt text presence Missing alt attributes trigger SpamAssassin penalties[6]

Header Hygiene

Data gap: Header hygiene — including From address domain alignment with SPF/DKIM, Reply-To consistency with authenticated domains, avoiding deceptive subject headers, and X-header bloat minimization — is named as a spam trigger avoidance sub-topic in this pillar's scope but is absent from the corpus. Coverage needed: primary sources (e.g., Postmaster Tools documentation, SpamAssassin scoring rules, RFC 5322 header guidance) for the specific header fields that affect spam filter scoring and how to configure them correctly. Flagged by improve round on Email Technical Constraints & Deliverability — pending re-gather pass.

Recommended Image-to-Text Ratios

RatingText %Image %
Acceptable60%40%[9]
Better80%20%[9]

Image Blocking Defaults by Client

Data gap: Image blocking default rates (% of instances where images are blocked on first open) are not available in the corpus for any client. Litmus State of Email report or Email on Acid benchmark data would close this gap. The qualitative defaults below are corpus-sourced. Flagged by improve round on Email Technical Constraints & Deliverability — pending re-gather pass.
ClientDefault Image BehaviorNotes
Outlook (desktop) Blocked by default in many configurations; user prompted to allow[9] Robust alt text mandatory
Gmail (web) Auto-displays images from known senders; routes through Google proxy CDN[9] Proxy caching obscures device data
Apple Mail Auto-displays; MPP pre-loads all images regardless of open[9] Open tracking unreliable
Yahoo Mail Generally auto-displays; blocks images more aggressively than Gmail or Apple[1][9] Alt text as critical fallback
Samsung Mail Generally auto-displays from trusted senders[9] Use width="100%" attribute

Technical Mitigation Strategies for Image Blocking

StrategyImplementation
Styled alt text Apply font-size, color, font-weight via style attribute on <img> tags — preserves visual hierarchy when images blocked[9]
Background color fallbacks Always set background-color on <td> cells behind images — maintains brand color when image fails to load[9]
HTML/CSS buttons for CTAs Never use an image as the primary call-to-action; use styled HTML button element[9]
Alt text hierarchy Alt text must convey the same informational meaning as the image itself[9]
Images-off testing Preview email with images disabled to verify readability and brand integrity[9]

Image Optimization Specs

ParameterLimit
Total email size targetUnder 1 MB[9]
Individual image size (cold outreach)Under 50 KB[6]
Preferred formatsWebP or optimized JPEG[6]
Image hostingOwn domain CDN with permanent URLs[9]

List Hygiene

Re-verify email lists every 6–12 months to remove invalid, inactive, or role addresses before they drive bounce and complaint rates above threshold.[6] Target a bounce rate under 2% and a spam complaint rate under 0.08%.[6] For cold outreach specifically, keep individual image files under 50 KB.[6] See Section 8 for the full warm-up audience exclusion windows (90+ day inactive, role addresses, purchased lists, prior hard bounces).

Deliverability Priority Order

  1. Pre-warmed sending domain/IP[6]
  2. Clean DNS authentication (SPF/DKIM/DMARC)[6]
  3. Dedicated IPs[6]
  4. List hygiene[6]
  5. Content patterns (image ratio, size, format)[6]
  6. Specific word avoidance (lowest priority factor)[6]

See also: Email Copywriting for copywriting approaches to spam trigger avoidance.


Section 10: Email Accessibility

99.88–99.89% of HTML emails contain "Serious" or "Critical" accessibility issues — across two consecutive EMC study years (2025: 21 emails of 443,585 passed; 2026: 8 emails of 376,348 passed).[1][5] The European Accessibility Act (EAA) enforcement began in June 2025, with WCAG 2.2 as the legal standard.[1][5]

Key finding: 83.78% of emails use layout tables without role="presentation" — the single most common structural accessibility failure. Screen readers announce table structure (rows, columns, cells) on untagged layout tables, turning visual email layouts into confusing data-table announcements.[1][5]

Industry Statistics

MetricValueSource
Emails with "Serious" or "Critical" issues (EMC 2025) 99.89% of 443,585 emails tested [5]
Emails with "Serious" or "Critical" issues (EMC 2026) 99.88% of 376,348 emails tested [1]
Emails with images missing alt text 47.88% [1][5]
Emails with layout tables missing role="presentation" 83.78% [1][5]
Marketers considering semantic HTML or ARIA during production 4% [5]
Marketers using accessibility testing tools 14% [5]
Marketers using no accessibility testing ~40% [5]
ADA lawsuits targeting accessibility violations 4,605 recorded [5]
EAA enforcement start June 2025 [1][5]

Accessibility Benchmark by Client (EMC Score, max 37)

ClientEMC ScoreOut of
Apple Mail3137[1]
Samsung Email3137[1]
Yahoo Mail1637[1]
Outlook Desktop1137[1]
Gmail(not available)37
Thunderbird(not available)37

Semantic HTML Requirements

ElementRequirement
Heading structure One <h1> per email; follow logical hierarchy h2→h3→h4; never skip levels; never use headings for styling only[5]
Paragraphs Use <p> tags — not <br> line breaks — for paragraph separation[5]
Language Include lang= attribute in <html> tag; can be applied per <p> for multilingual sections[5]
Emphasis Prefer <strong> and <em> over <b> and <i> for intentional semantic emphasis[5]
Email-safe semantic elements <header>, <footer>, <main>, <article>, <section>, <nav>, <aside>, <figure>, <figcaption>, <details>, <summary>, <mark>, <time>[5]

ARIA Attributes

AttributeUsageCritical Constraint
role="presentation" on <table> Required on all layout tables — prevents screen readers from announcing table structure[5] Missing from 83.78% of emails[5]
aria-hidden="true" Hides decorative graphics and duplicate content from screen readers[5] Never apply to focusable elements (buttons, links, keyboard-interactive components)[5]

Color Contrast Requirements

RequirementValueStandard
Normal text minimum contrast 4.5:1 WCAG AA[4]
Dark mode contrast maintenance WCAG Level AA minimum WCAG AA[2]
Link differentiation Color must not be the only visual cue WCAG[4]

Accessibility Testing Tools

Litmus (paid), Parcel (free accessibility checks), caniemail.com (per-property verification), Email on Acid — evaluate: color contrast, screen reader compatibility, automatic presentation role assignment, alt text completeness, link accessibility, zoom functionality, color vision deficiency filters.[1][5]

Screen Reader Testing

Screen reader testing is a required component of email accessibility verification, distinct from automated tool checks. Key screen readers relevant to email testing environments:

Data gap: Per-client screen reader behavior in email — specifically which clients announce table structure when role="presentation" is absent, which support ARIA landmark roles, and how JAWS, NVDA, VoiceOver, and TalkBack differ in rendering email HTML across clients — is not present in the corpus. Litmus or Email on Acid test reports using named screen reader configurations, or the Paciello Group's email accessibility research, would close this gap. Flagged by improve round on Email Technical Constraints & Deliverability — pending re-gather pass.

Section 11: Progressive Enhancement Strategy & Testing

Email must function correctly for users who have no images, no CSS, and rely entirely on screen readers — before optimizing for modern CSS features. The three-layer progressive enhancement model guarantees this order.[1]

Key finding: Minimum viable testing requires 8–10 configurations across Apple Mail, Gmail, Outlook (classic + new + web), Yahoo, Samsung, and dark mode variants across all.[1][12]

Three-Layer Progressive Enhancement

LayerScopeTechniques
1 — Foundation Works everywhere including classic Outlook (Word engine) Table-based layout, inline CSS, HTML attributes (width/height/bgcolor), semantic structure, descriptive alt text[1]
2 — Enhancement Modern CSS-capable clients (Apple Mail, Gmail, New Outlook, Samsung) border-radius, box-shadow, background-image (with VML fallback), web fonts (with system-font fallback)[1]
3 — Advanced Full-featured clients (Apple Mail, Thunderbird, New Outlook) Dark mode adaptation via @media, CSS animations (with GIF fallback), interactive elements (with static fallback)[1]

Common Rendering Issues and Their Fixes

IssueClientFix
Background images not rendering Classic Outlook VML workaround inside <!--[if mso]> conditional comments[1]
120 DPI layout distortion Classic Outlook (Windows at 120% DPI) Declare PixelsPerInch:96 in XML prolog; redefine widths in both HTML attributes and inline styles; add VML conditionals[4][7]
Mobile layout collapse Mobile clients display: inline-block stacking via media queries[1]
CSS stripped from <style> block Gmail Inline all critical styles directly on elements[1]
Dark mode image problems (inverted logos) Multiple clients Provide separate logo versions; use transparent PNGs with background colors; implement show/hide dark/light switching[1]
Animated GIF frozen on frame 1 Classic Outlook Design meaningful first frame; provide static image fallback[1]
Typography inconsistencies Multiple clients Use email-safe fonts (Arial, Helvetica, Georgia) with comprehensive fallback stacks[1]
Samsung 600px forced viewport Samsung Email See Section 12 for full Samsung quirks and workarounds.
height converted to min-height Yahoo Mail Avoid relying on fixed heights for structural elements[7]
!important stripped by whitespace Yahoo Mail Write !important with no space before the declaration[7]

Minimum Testing Matrix

EnvironmentMust Test
Apple Mail iPhone (iOS) + macOS — both light and dark mode[1]
Gmail Web (desktop) + iOS app + Android app — light and dark mode[1]
Outlook Classic desktop (Word engine) + New Outlook + Outlook.com[1]
Yahoo Mail Web[1]
Samsung Email Galaxy device — including with Exchange account configured[12]
Images disabled All clients — verify alt text rendering and brand integrity[9]

Testing Tool Options

ToolCostPrimary Use
Litmus Paid — see data gap ▼ Cross-client rendering previews, spam analysis[1]
Mailgun Inspect $99–$199/month Email rendering and deliverability checks[1]
Parcel Free (accessibility checks) Accessibility auditing[1]
caniemail.com Free Per-CSS-property client support verification[1]
Data gap (Litmus pricing): Litmus pricing tiers are not in the corpus. Source from litmus.com/pricing to complete cost-comparison planning. Flagged by improve round on Email Technical Constraints & Deliverability — pending re-gather pass.

Section 12: Samsung Email — Extended Quirks

Samsung Email is bundled with Android 6.0+ Samsung Galaxy devices. Approximately 2 out of 5 Samsung Galaxy users use it, particularly those with non-Gmail accounts.[12]

Key finding: Samsung uses HTML width attributes — not CSS width — to determine viewport width. An image with width="600" forces the entire email to render at 600px regardless of screen size. The fix is universal: width="100%" as an HTML attribute on all images and wrapper tables.[12]

Samsung Email Quirks Reference

QuirkBehaviorWorkaround
Viewport width source Uses HTML width attribute (not CSS) to set viewport[12] Always use width="100%" HTML attribute on images[12]
CSS absolute positioning Not supported despite relative and fixed working[12] Use margins instead (Mark Robbins / Rebelmail technique)[12]
CSS margin on <div>/<table> Not supported; margin works on <p> and headings only[7] Use padding or table-based spacing[7]
CSS keyframe animations Not supported; CSS transitions work[12] Use transitions or static fallbacks[12]
Media queries with Exchange account Lost when client configured with Outlook/Exchange account[12] Build fluid layouts that work without media queries[12]
Auto-linking Automatically converts addresses and phone numbers to blue underlined links[12] Accept or use Unicode lookalike characters to prevent (side effects exist)[12]
Unexpected padding May add white borders/padding around emails[12] Test on device; use explicit padding="0" on outer tables[12]
Body ID replacement Replaces custom body IDs with id="MessageViewBody"; wraps in div id="MessageWebViewDiv"[12] Target #MessageViewBody for Samsung-specific CSS overrides[12]
EMC accessibility score 31 of 37 — same as Apple Mail[1] N/A

Samsung-Specific CSS Targeting

#MessageViewBody .samsung-specific-class { display: none !important; }

The body receives id="MessageViewBody" in Samsung Email, enabling client-specific overrides.[12]

Beyond these known quirks, Samsung Email "renders and behaves similarly to major email clients" like iOS Mail, with robust HTML/CSS support including media queries — unless configured with an Outlook/Exchange account.[12]

Data gap: Absolute Samsung Email user base count (not just the 2-in-5 Galaxy-user fraction) is not in the corpus. Samsung device shipment data combined with the 40% figure would produce an estimate, but no primary source for total Samsung Email MAU is available in the corpus.

Sources

  1. The Complete Guide to Email Client Compatibility in 2025 (retrieved 2026-09-03)
  2. Ultimate Guide to Dark Mode for Email Marketers — Litmus (retrieved 2026-09-03)
  3. How to Implement DMARC/DKIM/SPF to Stop Email Spoofing/Phishing: The Definitive Guide — DMARCLY (retrieved 2026-09-03)
  4. Responsive Email Design Guide for Mobile, Gmail & Outlook — Campaign Monitor (retrieved 2026-09-03)
  5. How to Code Accessible Emails with Semantic HTML and ARIA — Email on Acid (retrieved 2026-09-03)
  6. Do Images in Emails Trigger Spam Filters? What the Data Actually Shows — SmartLead (retrieved 2026-09-03)
  7. The Complete Guide to Email Client Rendering Differences in 2026 - DEV Community (retrieved 2026-09-03)
  8. High-Volume Email Warmup: Ramp to 100k/Day Safely | SMTP2GO (retrieved 2026-09-03)
  9. Email Image Blocking: Answering the What, Why, Where, Who, and How | Litmus (retrieved 2026-09-03)
  10. Ultimate Guide to Dark Mode for Email Marketers | Litmus (retrieved 2026-09-03)
  11. FAQs For Marketers & ESPs - BIMI Group (retrieved 2026-09-03)
  12. Absolute Positioning in Samsung Android Email Client - Email on Acid (retrieved 2026-09-03)

Home