SigGen logoSigGen
Back to Blog
Troubleshooting

Email Signature Not Showing Images? Here's the Fix

A complete troubleshooting guide for email signature images that won't display. Learn why images break and how to fix them in Gmail, Outlook, and Apple Mail.

Martin Šikula

Founder of SigGen

January 8, 202610 min read

You've created the perfect email signature with your logo, photo, and social media icons—but when you send an email, the images don't show up. Instead, you see broken image icons, blank spaces, or placeholder boxes. This is one of the most common email signature problems, and fortunately, it's usually fixable.

In this guide, we'll cover why email signature images fail to display and provide step-by-step solutions for Gmail, Outlook, Apple Mail, and other email clients. Whether you're troubleshooting your own signature or helping colleagues fix theirs, you'll find the answers here.

Why Email Signature Images Don't Show

Before diving into fixes, it's important to understand why email signature images fail. The problem can originate from multiple sources: your signature setup, the image hosting, the recipient's email client, or network security policies.

Images Blocked by Recipient

Most Common

Most email clients block external images by default for security and privacy. Recipients must click "Display images" to see them.

Image Hosting Issues

Most Common

If your images are hosted on a server that's down, slow, or has bandwidth limits, they won't load properly.

Broken Image URLs

Most Common

Incorrect, expired, or deleted image URLs result in broken image placeholders.

Embedded Images Lost

Some email clients strip embedded images when you copy-paste signatures, leaving only placeholders.

Email Client Limitations

Certain email clients have restrictions on image formats, sizes, or sources they'll display.

Corporate Firewalls

Company email servers may block external images for security, affecting all incoming signatures.

Important: The Recipient Factor

Even if your signature is set up perfectly, recipients may not see images immediately. Most email clients block external images by default. Your images likely appear once they click "Display images" or add you to their contacts. Test by sending to yourself and trusted contacts first.

Quick Diagnostic Steps

Before trying complex fixes, run through these quick checks to identify the problem:

1

Test Image URLs Directly

Open your image URL in an incognito browser window. If it doesn't load, the URL is broken or the hosting service is down.

https://your-domain.com/signature-logo.png
2

Use HTTPS URLs

Ensure all image URLs use HTTPS, not HTTP. Most email clients block insecure HTTP images.

https:// (correct) vs http:// (blocked)
3

Check Image Dimensions

Verify width and height attributes are set. Missing dimensions cause layout issues in some email clients.

<img src="logo.png" width="150" height="50">
4

Verify Image Format

Use PNG or JPG format. SVG and WebP aren't supported by all email clients.

PNG, JPG, GIF (supported) | SVG, WebP (often blocked)

Fixing Images in Gmail

Gmail is the most popular email client, but it has specific quirks with signature images. Here's how to troubleshoot:

Problem: Images Show as Broken Icons

  • Re-add the image: Go to Settings > General > Signature. Delete the broken image and re-insert it using the image icon in the toolbar.
  • Use "Web Address (URL)" option: When inserting, choose "Web Address (URL)" instead of uploading. Paste a direct HTTPS image link.
  • Check Google Drive permissions: If using Google Drive, ensure the image is set to "Anyone with the link can view."

Problem: Images Disappear After Saving

  • Image too large: Gmail may strip images over 5MB. Resize your images to under 100KB for best results.
  • Unsupported format: Convert SVG or WebP images to PNG or JPG.
  • Browser extension conflict: Try disabling ad blockers or privacy extensions temporarily.

Problem: Recipients Don't See Images

  • Expected behavior: Gmail blocks external images by default. Recipients need to click "Display images below" or enable "Always display images from [sender]".
  • Work around: Use inline/embedded images when possible, as they display more reliably than linked images.

Gmail Image Settings Check

  1. Open Gmail Settings (gear icon)
  2. Click "See all settings"
  3. Scroll to "Images" section
  4. Select "Always display external images"
  5. Scroll down and click "Save Changes"

Fixing Images in Outlook

Outlook (both desktop and web versions) has robust signature support but can be strict about image sources and formats.

Problem: Red X or Placeholder Instead of Image

  • Image path issue: Outlook desktop stores signature images in a specific folder. If you move or delete the original file, the signature breaks.
  • Fix for Desktop: Go to File > Options > Mail > Signatures. Edit your signature and re-insert the image from its current location.
  • Fix for Web: Open Settings > Mail > Compose and Reply > Email Signature. Remove and re-add the image.

Problem: Images Blocked by Security Settings

  • Outlook blocks external content: By default, Outlook blocks pictures from the internet in emails.
  • For your own viewing: Go to File > Options > Trust Center > Trust Center Settings > Automatic Download. Check "Don't download pictures automatically" options.
  • For recipients: You can't control recipient settings, but using reputable image hosts improves delivery.

Problem: Images Work in New Emails but Not Replies

  • Signature settings: Outlook has separate signature settings for new messages and replies/forwards.
  • Fix: In Signature settings, ensure your signature is selected for both "New messages" AND "Replies/forwards" dropdowns.

Outlook Desktop: Local vs. Linked Images

Outlook desktop can embed images directly or link to external URLs. Embedded images are more reliable but increase email size. For company-wide signatures, linked images from a stable server are easier to update across all employees.

Fixing Images in Apple Mail

Apple Mail on Mac and iOS handles signatures differently. Here's how to fix image issues on both platforms:

Mac (macOS)

  • Recreate the signature: Go to Mail > Settings > Signatures. Delete the problematic signature and create a new one.
  • Drag and drop images: Apple Mail works best when you drag images directly into the signature editor rather than copy-pasting.
  • Check "Always match my default font": Uncheck this option if it's reformatting your signature and breaking image layouts.

iPhone/iPad (iOS)

  • Limited HTML support: iOS Mail has basic signature support. Complex HTML signatures with images may not render correctly.
  • Use simple signatures: For iPhone, consider a text-only signature or one with minimal images.
  • Alternative: Use a third-party email app like Spark or Outlook mobile that has better signature support.

Image Hosting Best Practices

Where you host your signature images significantly impacts whether they display correctly. Here are your options:

Google Drive

Pros

  • Free
  • Reliable
  • No bandwidth limits

Cons

  • Requires URL conversion
  • Links can break if file permissions change

Best for: Personal use and small businesses

Imgur

Pros

  • Free
  • Direct image links
  • Fast CDN

Cons

  • Images may be deleted if inactive
  • Not ideal for professional use

Best for: Testing and personal signatures

Your Own Website

Pros

  • Full control
  • Professional URLs
  • Reliable

Cons

  • Requires hosting
  • Technical knowledge needed

Best for: Businesses with existing websites

AWS S3 / Cloudflare R2

Pros

  • Highly reliable
  • Global CDN
  • Scalable

Cons

  • Requires setup
  • May have costs at scale

Best for: Companies with IT teams

Image Hosting Requirements

For reliable email signature images, your hosting must provide:

  • HTTPS URLs: HTTP links are blocked by most email clients
  • Direct image links: URLs must end in .png, .jpg, or .gif (not a webpage with the image)
  • High uptime: If the server is down when email is opened, images won't load
  • No authentication required: Images must be publicly accessible
  • Fast load times: Slow servers cause images to timeout and fail

HTML Image Code Best Practices

If you're using custom HTML for your email signature, proper image code is essential:

Correct Image HTML

<img
  src="https://your-domain.com/logo.png"
  alt="Company Name Logo"
  width="150"
  height="50"
  style="display: block; border: 0;"
>

Critical Image Attributes

  • src: Must be a full HTTPS URL, not a relative path
  • alt: Descriptive text shown when image doesn't load
  • width/height: Explicit dimensions prevent layout shifts
  • display: block: Prevents unwanted spacing below images
  • border: 0: Removes default link borders in older clients

Common HTML Mistakes

  • Using background-image CSS (not supported in most email clients)
  • Using Base64 encoded images (blocked by many email clients)
  • Using relative URLs like /images/logo.png
  • Missing width/height causing layout issues
  • Using SVG format (limited email client support)

Preventing Future Image Issues

Follow these practices to ensure your signature images work reliably:

Before Creating Your Signature

  • Resize images to appropriate dimensions (logos: 150-200px wide, photos: 80-100px)
  • Compress images to under 100KB each
  • Use PNG for logos with transparency, JPG for photos
  • Choose a reliable hosting solution with good uptime

After Creating Your Signature

  • Test by sending emails to yourself on different devices
  • Test on Gmail, Outlook, and mobile email apps
  • Ask a colleague to confirm images appear (after enabling display)
  • Periodically verify image URLs still work

For Organizations

  • Host images on company servers for reliability
  • Use a CDN for global accessibility
  • Document image URLs so they're not accidentally deleted
  • Consider signature management software for consistent branding

When Images Still Won't Work

If you've tried everything and images still don't display, consider these alternatives:

  • Text-based signature: A well-formatted text signature can look professional without images
  • Minimal images: Use only one essential image (logo or photo, not both)
  • Signature generator: Tools like SigGen handle image hosting and compatibility automatically
  • IT support: For corporate email, your IT department may need to whitelist image sources

Summary: Image Troubleshooting Checklist

  • Verify image URLs work in incognito browser
  • Confirm all URLs use HTTPS
  • Check image format is PNG, JPG, or GIF
  • Ensure images are under 100KB and properly sized
  • Verify width and height attributes are set in HTML
  • Test in Gmail, Outlook, and Apple Mail
  • Confirm images display after clicking "Display images"
  • Check hosting service is reliable with no bandwidth limits
  • For Outlook desktop, verify local image files exist
  • For Gmail, try re-inserting images via URL option

Create a Signature That Works

Our free Email Signature Generator creates signatures with properly hosted images that work across all email clients. No technical knowledge required.

Create Signature Now
Martin Šikula·Founder of SigGen

Developer and founder of SigGen. Builds free web tools at Šikulovi s.r.o. in Brno, Czech Republic. Focused on email productivity and privacy-first software.