Definition
Graceful degradation in email design is the practice of building a rich, feature-enhanced email and then systematically applying fixes and fallbacks for clients that cannot support those features. The strategy acknowledges that modern email clients vary dramatically in their CSS support and rendering capabilities, with Outlook's Word engine representing the lowest common denominator while Apple Mail and mobile clients offer near-web-standard support.
In practice, graceful degradation means designing for the best possible experience in clients like Apple Mail and iOS Mail, then adding conditional comments, VML fallbacks, and simplified CSS for Outlook. For example, a multi-column layout with rounded corner buttons and background images might be designed first, then degraded to stacked columns, square buttons, and flat background colours for Outlook. The degraded version ensures core content and calls to action remain accessible.
The approach has fallen out of favour compared to progressive enhancement, primarily because starting with the richest possible layout often creates more bugs than starting simple. However, graceful degradation remains useful when the target audience is heavily weighted toward modern clients and a small percentage of Outlook users is acceptable. Marketing teams sometimes prefer this approach because it prioritises the visual experience for the majority of their audience.
Best Practices
Identify your audience's client distribution before choosing a degradation strategy. If less than 5% of your recipients use Outlook, a degradation-first approach may be appropriate, but ensure those recipients can still read and click.
Always ensure that the degraded version provides a complete experience. Core content, primary calls to action, and essential navigation must function in Outlook even if they are less visually polished.
Use conditional comments and VML as degradation tools rather than enhancement tools. Apply Outlook-specific fixes after the primary design is complete, addressing each rendering issue one at a time.
Test the degraded version before the enhanced version. If the Outlook version is broken, a significant segment of your audience cannot interact with the email at all.
Document degradation decisions so your team understands why certain fallbacks exist. Without documentation, developers may accidentally remove Outlook fixes during refactoring, assuming they are no longer needed.
Related Glossary Terms
Email Above Fold
The portion of an email visible without scrolling, varying significantly by device, client, and preview pane configuration.
Email Apple Mail
Apple's email client for macOS and iOS, known for the best CSS support among major email clients due to its WebKit rendering engine.
Email Background Image
A background image applied to an email's table cell or container, requiring VML fallbacks for Outlook due to its lack of CSS background-image support.
Email Bulletproof Button
A cross-client email button technique using VML for Outlook and standard HTML for all other clients, ensuring consistent appearance and clickability.
Email Conditional
Proprietary conditional comments used to target Microsoft Outlook with specific HTML or VML code for cross-client email rendering.
Email Design System
Email design systems and component libraries with reusable modules, design tokens, documentation, versioning, and designer-developer handoff processes.
Frequently Asked Questions
Graceful degradation starts with the richest possible design and strips features for less capable clients. Progressive enhancement starts with a simple baseline and adds features for more capable clients. Progressive enhancement is generally considered more reliable for email.
Use graceful degradation when your audience is predominantly Apple Mail or mobile users and you want to maximise the visual experience for that majority. It also works for one-off brand campaigns where the visual impact is more important than universal compatibility.
Multi-column layouts degrade to stacked single columns. Rounded buttons degrade to square buttons with standard padding. Background images degrade to solid background colours. CSS-animated elements degrade to static content.
It can if not implemented carefully. Ensuring the degraded version still passes accessibility checks — sufficient colour contrast, readable font sizes, descriptive alt text — is essential. The degraded version should not lose interactive or navigational functionality.
Many email developers use a hybrid approach: progressive enhancement for the core HTML structure and graceful degradation for specific visual features like buttons and background images. The terms describe a mindset rather than mutually exclusive techniques.