Why Your Email Signature Looks Perfect on First Send and Might Fall Apart After That

Need an email signature?
Why Your Email Signature Looks Perfect on First Send and Might Fall Apart After That

The Uncomfortable Truth About Gmail, Outlook, Apple Mail, and the HTML They Quietly Destroy

There is a question that comes up, with remarkable regularity, in the inbox of every email signature designer, IT administrator, and marketing professional who has ever tried to maintain a polished brand presence in email communications. The question goes something like this: "Our signature looked amazing when we first sent it. But now, after a few replies, it's a mess. What went wrong with the signature?"

The answer - and this is the point that must be stated clearly and without qualification - is that nothing went wrong with the signature. The signature did exactly what it was designed to do. What happened was something else entirely: the email client got involved.

This article explains, in precise terms, exactly what Gmail, Microsoft Outlook, and Apple Mail do to HTML email signatures as messages pass through reply chains — and why no signature software, no developer, and no amount of clever HTML coding can fully prevent it.

The First Send: A Controlled Environment

When an email is composed and sent for the first time, the email client renders the signature in what is effectively a controlled environment. The HTML is intact. The images are present. The CSS is unmodified. The client has had no reason to interfere with the structure because it is delivering an outbound message, not processing an incoming one.

This is why the first send almost always looks exactly right. The layout is clean, the logo renders correctly, the typography is consistent, and the contact details are properly aligned. The signature designer's work is faithfully represented. There is nothing to criticise. The signature is doing its job.

The problems begin when someone hits Reply.

The Reply Chain: Where Email Clients Take Liberties

When a reply is composed, the email client must take the previous message - including its HTML signature - and embed it into the new message as quoted content. This is where things begin to unravel, and it is entirely the email client's doing.

Each of the major clients handles this process differently, and none of them handles it particularly well for HTML signatures.

Gmail

Gmail is arguably the most aggressive modifier of quoted HTML content. When Gmail wraps a previous message in a reply, it applies its own inline styles, strips certain CSS properties it considers unnecessary, and frequently rewrites HTML structure to conform to its own rendering model.

Gmail is particularly prone to stripping or modifying <style> block declarations when they appear in quoted content. Because Gmail does not support embedded stylesheets in general email rendering and instead relies on inline styles, any signature that depends on class-based CSS styling will begin to lose its formatting on the first reply pass. Classes are ignored; declarations disappear; the rendering engine substitutes its own judgement for the designer's.

Image handling in Gmail replies is another significant source of degradation. Gmail may block externally hosted images in quoted portions of a message, particularly where those images have been seen before and are being rendered in a collapsed or partially-loaded state. A logo or social media icon that appeared clearly on the first send may appear as a broken image icon, a grey placeholder, or simply vanish from the layout entirely within a few rounds of replies.

Gmail also has a well-documented behaviour involving what it calls the "clipping" of long messages. When a thread becomes lengthy, Gmail truncates the visible HTML and presents the familiar "[Message clipped]" link. The signature, sitting at the bottom of the message, is often the first casualty of this clipping. Even if the HTML itself is technically intact, it may not render at all for a recipient viewing the thread in Gmail.

Microsoft Outlook

Outlook presents a different set of challenges, largely rooted in the fact that Outlook for Windows (as distinct from the newer Outlook for Mac or Outlook on the web) uses the Microsoft Word rendering engine to process HTML. This decision, which has attracted sustained criticism from email developers for well over a decade, means that Outlook applies Word's understanding of HTML and CSS rather than that of a modern browser.

When Outlook processes a reply chain, it converts HTML content - including signatures - through this Word-based rendering pipeline. The consequences are significant and largely predictable: CSS properties that are standard in modern web development are either ignored or reinterpreted. max-width declarations, display: flex, and many background properties are either stripped or have no effect. Padding and margin values may be collapsed or misapplied.

More problematic still is what Outlook does with images in quoted content. Outlook frequently converts externally hosted images to attachments, or strips them from the quoted portion of a reply entirely. An image that was referenced by a URL in the original signature may, after one or two rounds of Outlook processing, be absent from the thread entirely or appear as an attachment with a generic filename — completely disconnected from its original context in the layout.

Outlook also has a long-standing behaviour of adding its own paragraph spacing, line heights, and font declarations to quoted HTML content. These additions override the designer's specifications. Font sizes change. Line spacing expands or contracts. The careful typographic choices embedded in the original signature are quietly overwritten by Outlook's defaults.

In corporate environments where Outlook is the dominant client, email threads involving contacts who use different versions of Outlook - desktop versus web versus mobile - introduce additional layers of inconsistency, because each version applies slightly different rules to the HTML it processes.
Why Your Email Signature Looks Perfect on First Send and Might Fall Apart After That
No items found.

Apple Mail

Apple Mail is generally considered the most standards-compliant of the three major clients for initial rendering, and for good reason: it uses WebKit, a genuine browser engine, to display email. On first send, Apple Mail signatures tend to render with considerable fidelity to the designer's intentions.

But Apple Mail's behaviour in reply chains is not immune to degradation. When Apple Mail quotes a previous message, it applies a blue left-border quotation styling to the entire block of quoted content. This visual treatment is applied regardless of the original HTML structure, and while it is recognisable and familiar to Apple Mail users, it imposes an aesthetic over the original signature design that the designer never intended.

Apple Mail also makes modifications to image references in quoted content. Images embedded via external URLs may not reload within quoted portions of a message, particularly if the recipient's Mail settings restrict automatic image loading from external sources. And when Apple Mail converts a message to plain text - which can happen when forwarding to certain clients, or when the recipient's client requests a plain text version - the HTML signature is stripped entirely and replaced with either a plain text approximation or nothing at all.

Apple Mail on iOS and iPadOS introduces further variability. The mobile client handles HTML rendering differently from its desktop counterpart, and signatures that have been optimised for desktop rendering may display poorly on iPhone or iPad replies - particularly if the layout uses fixed widths or relies on desktop-scale font sizes.

Image Recompression: How Email Clients Degrade Your Visuals at the Pixel Level

Stripping images entirely is the most visible form of image damage in reply chains. But there is a subtler, and in some ways more insidious, form of degradation that receives far less attention: image recompression. Email clients do not merely remove images, they actively re-encode and degrade them, often without any indication to the sender or recipient that this has happened.

Gmail's Image Proxy: The Silent Recompressor

When Gmail receives an email containing images referenced by external URLs, it does something that the vast majority of senders are completely unaware of: it fetches those images and re-hosts them through Google's own proxy infrastructure. The image URLs in the received message are quietly rewritten from the original hosting domain to googleusercontent.com addresses.

This proxy system exists primarily for security and privacy reasons, it prevents senders from tracking when and where a recipient opens an email by intercepting the image request before it reaches the original server. This is a legitimate protective measure. The collateral damage, however, is significant.

As part of this proxying process, Gmail recompresses the images. The degree of compression applied is not publicly documented and is not within the sender's control. What is well-established in practice is that images, particularly logos, icons, and branded graphics of the kind commonly used in email signatures , emerge from this process with measurably reduced quality. Sharp edges become slightly soft. Flat colour areas develop compression artefacts. The clean, crisp appearance of the original is quietly eroded.

The Retina Image Problem

This recompression issue has a particularly cruel interaction with one of the most widely recommended techniques for improving signature image quality on high-resolution screens: the use of @2x, or "retina," images.

The standard approach is straightforward. If a logo is to be displayed at 200 pixels wide in the signature, the designer supplies an image file that is 400 pixels wide - double the display dimensions - and sets width="200" in the HTML. On a standard-resolution screen, the image looks normal. On a retina or high-DPI screen, it renders at the full 400-pixel resolution mapped into the 200-pixel display space, producing a noticeably sharper result. It is a well-established, widely used technique.

Gmail's image proxy does not understand this intent. When it encounters a 400-pixel-wide image being displayed at 200 pixels, its optimisation logic draws a straightforward conclusion: this image is twice as large as it needs to be. The proxy proceeds to resize the image down toward its display dimensions and recompresses it accordingly. The carefully prepared @2x source file - the one that was supposed to deliver crispness and clarity on modern screens - is processed down to a size the proxy considers more appropriate, and recompressed in the process.

The result is that the recipient, on reply, sees not the sharp @2x image that was sent, but a recompressed, resized version that may be noticeably softer or show compression artefacts, particularly on the retina screen it was specifically designed to serve. The technique intended to improve quality has inadvertently invited more aggressive proxy processing.

Outlook and Image Re-encoding

Outlook approaches the image problem differently but arrives at a similar destination. Rather than proxying images through an external server, Outlook for Windows frequently converts externally referenced images into embedded attachments during the reply process. When this conversion occurs, Outlook re-encodes the image as part of embedding it, and the re-encoding process introduces its own quality loss.

This is particularly problematic for PNG images, which are lossless in their original form - every pixel is preserved exactly as authored. When Outlook re-encodes a PNG as part of its attachment conversion process, it may apply JPEG-style compression to the result. The lossless original becomes a lossy copy, with visible degradation that was never present in the source file. A logo with clean edges and flat brand colours, exactly the type of image that benefits most from PNG's lossless encoding, may emerge from this process with haloing artefacts around its edges and banding in its colour fields.

Apple Mail and iOS Compression

Apple Mail on iOS introduces another form of image recompression that operates at the sending stage rather than the receiving stage. When a user on iPhone or iPad composes a reply that includes quoted content with images, iOS may apply its own compression to the message before sending, particularly when "Low Quality Image Mode" is enabled in iOS settings or when the device is managing data usage on a cellular connection.

This iOS-level compression is applied to the entire outgoing message, including any images in the quoted signature content. The compression level applied is determined by iOS, not by the email client or the original sender, and it can be substantial. An image that arrived in good quality at the iOS device may leave it in noticeably reduced quality, and the recipient of that reply — who may be viewing the thread on a desktop client with no data limitations — will see the compressed version with no indication of what happened.

Why Retina Images Still Matter - With Caveats

None of this means that @2x images are the wrong choice for email signatures. On the first send, to a recipient whose client does not proxy or recompress images, the retina technique delivers a genuine improvement in quality on high-DPI screens. The problem is specific to what happens downstream, in reply chains, when the image passes through Gmail's proxy or Outlook's re-encoding process.

The honest position is that @2x images improve quality under ideal conditions and are subject to the same proxy degradation as any other image under reply-chain conditions. This is not a reason to abandon the technique — it is a reason to understand its limitations and to set expectations accordingly. The first send will look sharp. What Gmail's proxy does to that sharpness on subsequent replies is, once again, outside the designer's control.

The Compounding Effect: Multiple Replies

If a single reply pass introduces degradation, multiple rounds of replies compound the problem geometrically.

Consider what happens to a signature over a typical back-and-forth email thread. The original sender uses Gmail. The recipient replies from Outlook. The original sender replies again. A third party is CC'd and replies from Apple Mail on iOS. Each of these client transitions applies its own set of transformations, stripping rules, and re-rendering logic to the accumulated quoted content.

By the third or fourth reply, the signature that appeared in the original message has been:

  • Processed by Gmail's HTML sanitiser on receipt
  • Re-rendered through Outlook's Word engine on reply
  • Wrapped in Apple Mail's quotation styling on the subsequent reply
  • Potentially clipped, reindented, or partially stripped at each stage

The result is often genuinely chaotic. Images appear as broken links or missing placeholders. Text that was once a carefully styled, branded element now renders in a default system font with inconsistent sizing. Layout tables — often used in HTML email signatures because they are more reliably supported than CSS-based layouts — are collapsed, reindented, or broken across multiple lines. The separator that once cleanly divided the signature from the message body may disappear, leaving the signature visually merged with the body text above it.

This is not hyperbole. Any email professional who has scrolled to the bottom of a long thread involving multiple clients will recognise the description exactly.

The Myth of the Bulletproof Signature

It would be comforting to believe that a sufficiently clever piece of code — the right combination of inline styles, table-based layout, base64-encoded images, and carefully chosen HTML attributes — could immunise a signature against this degradation. The email signature industry has spent years attempting to construct exactly this kind of solution.

It cannot be done.

The core problem is structural. Email clients modify quoted content according to their own rules, and those rules are not publicly documented, not standardised across clients, and not within the control of the signature's author or the software that generated it. The signature designer can optimise for initial rendering with great success. They can use inline styles rather than class-based CSS to reduce dependency on stylesheet support. They can use base64-encoded images to avoid external URL loading issues. They can use robust table-based layouts to minimise dependence on CSS layout properties.

All of these techniques improve the situation. None of them solves it.

Because the fundamental issue is not the HTML that the designer writes — it is the HTML that the email client rewrites. Once a message enters a reply chain, its quoted content is subject to the receiving and sending client's processing logic. That logic is not neutral. It actively modifies the content. And it does so in ways that are inconsistent across clients, inconsistent across versions of the same client, and inconsistent across operating systems and devices.

No signature software - however sophisticated, however well-engineered, however extensively tested - can intercept this processing and restore the original HTML. The signature enters the reply chain, and the client does what it does
No items found.
Email Signature Template 1
Email Signature Template 2
100+ Professional Templates

Stand Out with Beautiful Email Signatures

Create professional email signatures that make a lasting impression. Easy to customize, easy to install in Gmail, Outlook, Apple Mail + 60 more email clients, apps and CRM.

Find Your Email Signature

Why Email Clients Behave This Way

It is worth understanding, at least briefly, why email clients make these modifications rather than simply preserving the HTML as received.

The reasons are a mixture of security, performance, and design philosophy.

Security is the most defensible rationale. HTML email is a well-established vector for phishing, malware delivery, and tracking. Email clients sanitise incoming HTML in part to protect users from malicious content embedded in quoted messages. The collateral damage of this sanitisation - stripped styles, removed classes, blocked images - is a side effect of defensive processing, not deliberate hostility to designers.

Performance is a secondary consideration. Long HTML threads can become very large. Gmail's clipping behaviour, for example, is explicitly a performance measure: the client declines to render the full HTML of very long messages in order to keep the interface responsive. The signature, being at the bottom of the message, takes the hit.

Design philosophy is perhaps the most frustrating cause. Each email client has its own opinion about how quoted content should look. Gmail has its visual approach to threading. Outlook has its long history of preferring Word-compatible formatting. Apple Mail has its quotation indentation conventions. These are product decisions made by large engineering teams at companies that are not primarily concerned with the fidelity of third-party HTML signatures. They are concerned with their own users' experience of their own product. The signature is, from their perspective, someone else's content.

What a Better World Would Look Like

In an ideal world, email clients would treat quoted content as inviolable. Received HTML - including HTML signatures - would be preserved in its original state as it passed through reply chains. Images would not be stripped. Stylesheets would not be rewritten. Table structures would not be collapsed. The layout that the designer created and the sender deployed would be the layout that every recipient saw, on every reply, in every client, on every device.

This is not a technically impossible standard. It is simply not the standard that any of the major email clients have chosen to implement. The technical mechanisms for preserving HTML content in quoted messages exist. The will to implement them, which would require coordinated changes to Gmail, Outlook, Apple Mail, and the dozens of other clients in use around the world, has not materialised.

The email industry has long hoped that a more standardised approach to HTML rendering in email, driven by initiatives such as the Email Markup Consortium or the incremental improvements to CSS support tracked by resources like Can I Email, would gradually reduce the severity of this problem. Progress has been made on initial rendering support. The reply-chain degradation problem remains largely unaddressed.

What This Means in Practice

For anyone responsible for managing email signatures - whether as a designer, an IT administrator, a marketing manager, or a business owner - the practical implications of this reality are worth stating plainly.

Your signature will look excellent on the first send. This is entirely achievable and entirely worth pursuing. A well-designed, professionally deployed HTML email signature delivers real brand value and makes a genuine impression on first contact.

On the first reply, some degradation is likely. The degree will depend on which clients are involved. In some combinations - particularly modern web-based clients on both sides - the degradation may be minor. In others, particularly where Outlook for Windows is in the chain, it may be quite visible.

On subsequent replies, the degradation will accumulate. By the fifth or sixth reply in a mixed-client thread, the signature's original design may be largely unrecognisable in the quoted portion of the message. This is normal. It is expected. It is not a failure of the signature or the software that created it.

The appropriate response is not to pursue a technically perfect solution that does not exist, but to set realistic expectations: the signature serves its primary purpose on the first send and the initial replies, where impressions are formed and brand recognition is established. What happens to it deep in a reply thread is, largely, outside anyone's control.

Conclusion

The degradation of HTML email signatures across reply chains is not a bug in any particular signature product. It is not the result of bad HTML, insufficient technical skill, or inadequate testing. It is the predictable and well-documented consequence of email clients, Gmail, Outlook, Apple Mail, and others, modifying quoted HTML content in ways that are not standardised, not fully documented, and not within the control of signature designers or developers.

The first send is the showcase. The reply chain is the wild west. This has been true for years, it remains true today, and it will continue to be true until the major email clients collectively decide that preserving the integrity of quoted HTML is a priority worth implementing.

Until that day, the honest answer to "why does my signature look broken in replies?" remains: because the email client broke it. Not you. Not your designer. Not your signature software.

The email client.

This article reflects the current behaviour of Gmail, Microsoft Outlook, and Apple Mail as of 2025–2026. Specific client behaviours are subject to change with software updates, though the fundamental structural problem described here has persisted across many years and many versions of each client.

Amy Lockwood is the Co-Founder of Email Signature Rescue with over a decade of experience in HTML email signatures for 60+ email clients, apps and CRM software including Outlook, Gmail, Apple Mail. She is the Head Designer of the Email Signature Rescue apps and website.

📩 Need help with your HTML email signatures? Contact Amy at emailsignaturerescue.com.

Ready to transform your email signatures?

FLYBY Signature
AUTHOR Signature
RAISE Signature
See Templates
OUR AWESOME CLIENTS

We work with
the best clients

Join our community of satisfied clients who trust us to create, host, manage and deploy their HTML email signatures.

4.8
Trustpilot Rating
200k+
Users Rescued
30M+
Hours Saved
10+
Years in the Business
1.1M+
Images Hosted