Best Practices14 min read

Email Signature Best Practices — The Only Guide You Need (2026)

After looking at thousands of email signatures — good, bad, and genuinely horrifying — I’ve distilled everything that actually matters into one place. What to include, what to cut, how to handle fonts and colors, and the mistakes that make even expensive signatures look amateurish.

By the NeatStamp Team · Published March 2026 · 14 min read

What to include (and what to skip)

Most signature advice tells you to add more. My take is the opposite: every element you add competes for attention, and most of them lose. Here’s how I think about what earns a spot.

The core five — always include these

These are non-negotiable for any professional context:

  • Full name — not a nickname, your actual name as you’d appear on a business card.
  • Job title — be specific. "Marketing Manager" is better than "Marketing" and much better than "Team Lead."
  • Company name — and link it to your company website, not just leave it as plain text.
  • Phone number — one number only. If you have a direct line, use that over a switchboard.
  • Email address — yes, even though they already have it. It gets copied into calendar invites, forwarded emails, and printed conversations.

Optional but worth considering

These add real value in the right context:

  • Company logo — if your company has decent brand recognition or you’re client-facing, a logo reinforces trust. If you’re a solo freelancer, a simple wordmark often looks cleaner than a complex icon.
  • LinkedIn profile link — nearly universally appropriate. Recipients often check LinkedIn before or after a meeting.
  • Headshot — valuable for anyone in a relationship-driven role: sales, consulting, coaching, real estate. Less necessary in technical or back-office roles.
  • Booking link — if you take meetings, a Calendly or Cal.com link saves back-and-forth. Only include it if people actually need to book time with you.
  • One-line tagline — only if it’s genuinely useful, not marketing copy. "Specialising in UK employment law" is useful. "Creating smiles one client at a time" is not.

Things to leave out

I’ve seen these in real signatures. Please don’t:

  • "Sent from my iPhone" — disables this immediately. It makes you look like you don’t care enough to turn it off.
  • Environmental disclaimers like "Please consider the environment before printing this email" — they accomplish nothing except adding visual clutter.
  • Long legal disclaimers tacked onto personal emails — these belong only on regulated communications, not every email your team sends.
  • Animated GIFs — they are almost universally stripped or blocked. And even when they work, they’re distracting.
  • Inspirational quotes — unless you’re specifically positioning yourself around thought leadership and your audience expects it.
  • Your full mailing address — unless you’re in a business that requires it (financial services, legal, e-commerce).

If you want to see how a clean signature actually looks before building yours, the NeatStamp examples gallery has real-world signatures by role and industry. The template library is also a good place to calibrate what “just enough” looks like.

Font choices that actually work

This is where a lot of designers get tripped up. Email is not a web page. You cannot reliably use Google Fonts or any custom webfont in an email signature — most email clients simply don’t load external CSS. What they do render is a short list of system fonts, commonly called “web-safe fonts.”

The web-safe font list for email

Arial / Arial Narrow

Safe on every platform. Clean, neutral, works at any size.

Georgia

The best serif option. Adds a classic, authoritative feel. Good for law, finance, academia.

Verdana

Designed for screens. Very readable at small sizes (10–12px). Slightly wider letterforms.

Trebuchet MS

A bit more personality than Arial. Humanist sans-serif. Works well for creative industries.

Tahoma

Compact and clean. Windows staple. Renders well in Outlook.

What about custom fonts?

You can specify a custom font as your first choice and then fall back to a web-safe font. Like this: font-family: 'Lato', Arial, sans-serif;

On devices where Lato is installed (which is surprisingly many, since it’s a popular system font on Android), your recipient sees it. On Outlook desktop or iOS Mail, they see Arial. The important thing is that the fallback is something sensible, not a random system font.

Size guidelines

  • Name: 14–16px, bold
  • Job title: 12–14px, regular or medium weight
  • Contact details: 11–13px, regular
  • Tagline or secondary text: 10–11px, this is the absolute minimum

Don’t go below 10px anywhere. On mobile screens (especially at iOS’s default zoom), 9px text is effectively invisible. The NeatStamp editor enforces this minimum automatically.

Color theory for email signatures

The goal of color in a signature isn’t to look pretty — it’s to reinforce your brand identity without fighting the email content for attention. Here’s how to use it well.

The three-color rule

Limit yourself to three colors maximum: a primary brand color (for your name or a divider line), a neutral dark (for body text — #333333 or #1a1a2e, not pure black), and white or light grey for the background. That’s it. Every additional color adds visual noise.

Contrast and accessibility

WCAG AA requires a contrast ratio of at least 4.5:1 for normal text. This matters for email signatures because roughly 8% of men have some form of color blindness, and many more read emails in low-light conditions. Test your colors with a contrast checker before finalising. Common fails I’ve seen:

  • Light grey text (#999999) on white — fails AA at body text sizes
  • Yellow or light orange text on white — fails badly
  • Brand-colored text on a matching brand background (e.g., blue text on blue background)

Dark mode considerations

In 2026, roughly 60–70% of email clients support dark mode, and a significant chunk of users have it turned on. The problem is that dark mode implementations vary wildly. Outlook on Windows inverts colors that aren’t declared inline. Gmail on Android preserves inline styles but adds a dark background.

Practical advice: use a light or white background for your signature explicitly with background-color: #ffffff in the inline style. This prevents Outlook from guessing. Your text should be dark (#333 or #1a1a2e) rather than black (#000000), because pure black on a forced dark background can cause inversion issues.

For a deep dive on design options, the email signature design guide covers layout patterns in more detail.

Image sizing — the numbers matter

Images in email signatures are where most things go wrong. Too big and they become attachments. Too small and they look pixelated on retina screens. Wrong format and they break in Outlook. Here are the exact numbers to use.

Logo dimensions

Recommended

  • Width: 150–200px (display size)
  • Height: proportional, usually 40–60px for horizontal logos
  • Actual file resolution: 2x for retina (so 300–400px actual width)
  • File size: under 20KB, ideally under 10KB
  • Format: PNG with transparent background (not JPG for logos)

Always set explicit width and height attributes in the HTML, not just CSS. Without them, Outlook ignores your dimensions entirely and renders the image at full size. This is the single most common Outlook image bug I’ve seen. The guide to signatures with logos walks through exactly how to set these attributes.

Headshot dimensions

  • Display size: 80×80px or 100×100px (square or circle crop)
  • Actual file: 160×160px or 200×200px for retina
  • File size: under 25KB
  • Format: JPG for photos (smaller file than PNG)

Banner/promotional image dimensions

If you’re using a banner below your signature details (for a promotion, event, or certification badge), these should be:

  • Width: 600px maximum (matches the max-width of most email layouts)
  • Height: 60–100px — enough to read, not so tall it dominates
  • File size: under 40KB
  • Format: JPG for photographs, PNG for graphics with text

Hosting your images

Images in email signatures should be hosted externally — not embedded as base64. Base64 images bloat the email file size enormously (a 20KB image becomes ~27KB of text), and many spam filters flag high base64 usage.

NeatStamp Pro hosts your images on our CDN automatically. On the free plan, your images need to be hosted somewhere publicly accessible — a company website image folder works fine. The full technical details are in the HTML email signature guide.

Mobile considerations

As of 2026, just over 50% of business email is read on mobile — roughly split between iOS Mail, Gmail mobile, and Outlook mobile. None of them render HTML signatures identically, and the differences matter.

Width: the 600px rule

Cap your signature at 600px wide. Most desktop email clients show the reading pane at 600–800px. On mobile, a 600px table scales down reasonably. Wider than that and you get horizontal scrollbars on phones, which looks terrible.

Tap target sizes

Any link in your signature — phone number, email, social icon — should be touch-friendly. Apple’s HIG recommends a minimum tap target of 44×44pt. Tiny social icons at 16×16px are nearly impossible to tap accurately. Aim for at least 24×24px for icons, and give links some vertical padding.

Phone numbers as tappable links

Wrap your phone number in a tel: link. iOS and Android will both recognize it and offer to call. Without it, users have to manually copy the number — an unnecessary friction.

Testing on real devices

Email rendering on mobile varies by OS version, display scaling, and even dark mode settings. Before sending a signature into production, test it on at least: iOS Mail, Gmail on Android, and Outlook mobile. If you have access to a Windows PC, test Outlook desktop too. The professional email signature guide includes a pre-launch checklist covering all of these.

Common mistakes (and how to avoid them)

I’ve seen these mistakes repeatedly — sometimes from major companies, which is embarrassing for them and educational for the rest of us.

Using a table with background images

Outlook (all versions) does not support CSS background-image on table cells. If your template relies on background images for layout, it will be a blank rectangle in Outlook. Use a foreground <img> element instead, with all formatting as inline styles.

Stacking social icons horizontally without spacing

When four or five social icons sit directly adjacent with no spacing, they look compressed and are hard to tap. Add at least 6–8px of spacing between them — either as a margin or by putting each icon in its own table cell.

Linking to your LinkedIn company page instead of your personal profile

The company page is marketing. Your personal LinkedIn profile is the connection. Recipients who click want to know who they're talking to. Link to your personal profile.

Using a web font without a fallback

If you declare font-family: "Poppins" with nothing else, Outlook falls back to Times New Roman. Your beautifully designed signature renders in a serif font you didn't choose. Always specify font-family: "Poppins", Arial, sans-serif.

Embedding the signature as a screenshot

I see this occasionally — someone takes a screenshot of a nicely designed signature and puts that image in the email footer. Zero links work. Zero text is selectable. Zero accessibility. It downloads as an attachment in some clients.

Not updating it when you change roles

Your signature is a live document. I've seen people with a title three jobs ago still in their footer. Set a quarterly reminder to check it. If you use NeatStamp Pro with saved signatures, updating takes 30 seconds.

Industry-specific tips

One size doesn’t fit all here. What works for a startup founder is wrong for a solicitor. Here’s what I’d recommend by sector.

Legal and Financial Services

Required in many jurisdictions: company registration number, registered address, regulatory body (e.g., FCA, SRA). Skip the headshot — it's unusual in these sectors. Use a conservative serif font (Georgia) or clean sans-serif (Arial). No social links except LinkedIn. A legal disclaimer at the bottom is often mandatory.

Creative and Freelance

Your signature is a portfolio teaser. Include a direct link to your portfolio or a featured project. A headshot is almost always worth including — it personalises otherwise cold outreach. Instagram is relevant if your work is visual; Behance or Dribbble for designers. Keep the design distinctive but not distracting — your work should speak louder.

Real Estate

Headshots are nearly universal and important in this sector — clients buy from people they trust, and a photo builds familiarity fast. Include your licence number (required in many regions), agency logo, and phone number prominently. A link to your current listings or a recent sale is a good CTA.

Startup and Tech

Keep it minimal. One line of contact info, a small logo, LinkedIn. Optionally: GitHub if you're recruiting developers. If the company is post-launch, a product link or NPS score can work as social proof. Avoid anything that looks corporate — it reads as try-hard in this context.

Healthcare

Credentials matter enormously: degrees, board certifications, hospital affiliations. These belong immediately after your name or title. No personal social links. A HIPAA disclaimer is required for US providers.

Sales and Business Development

This is where CTAs earn their place. A Calendly link, a recent case study, or a one-sentence value proposition can all work. Keep the signature to 5 lines of text so it doesn't overwhelm a short outbound email. The email-signature-for-business page has examples tuned for this context.

For dedicated industry templates, the business email signature page and examples gallery are worth a look. If you want to build yours right now, the NeatStamp editor is free and takes about 60 seconds.

Frequently asked questions

What should every professional email signature include?

At minimum: your full name, job title, company name, and one way to reach you (phone or email). After that, a logo and one or two social links (especially LinkedIn) add credibility. Keep it to five lines or fewer and you'll be in good shape.

What's the ideal font for an email signature?

Stick to web-safe fonts — Arial, Georgia, or Verdana. These render correctly across every email client. Custom fonts like Montserrat or Raleway often fall back to a default serif anyway, so you lose control of how it looks.

Should I include a photo in my email signature?

It depends on your industry. For sales, consulting, and real estate, a headshot builds rapport. For a law firm or corporate finance role, it can look out of place. If you include one, keep it 80×80px to 100×100px and under 20KB.

How many social media icons should I include?

Two or three maximum. LinkedIn is almost always worth including. After that, add only the platform where you're actually active and where your recipients would find it relevant. Eight social icons in a row just looks desperate.

Do I need a different signature for mobile?

Your signature should be built responsively — max-width 600px, scalable images, and nothing that relies on hover states. NeatStamp generates mobile-friendly code automatically. The main thing to avoid is text below 10px, which is unreadable on phones.

Ready to put this into practice?

Build a signature that follows every best practice on this page — free, in about 60 seconds.

Create My Signature — Free