Skip to content
nah

Investigation

The Email Signature Shakedown

How email signature generators charge $9 to $189 a month for string concatenation that takes your browser a fraction of a millisecond to compute.

A freelance designer named Sarah needs to look professional when emailing new clients. She wants her name, title, phone number, and a headshot in her email footer — the kind of thing every corporate employee has had automatically since 2005. She searches "email signature generator," clicks the first result, and spends twenty minutes getting everything just right. She hits the button to copy her signature, pastes it into Gmail, and it looks great.

A month later, her signature stops rendering. The headshot is a broken image. The formatting is gone. She goes back to the site to check and discovers she's been on a free trial — one she never knowingly started — and the trial expired while she was busy sending client emails with a broken footer. To get her signature back, she needs to subscribe. The cheapest plan is $9 a month. The one with the features she used is $29. Per user.

She spent twenty minutes. They want $108 a year. For an HTML table.

What an email signature actually is

Before getting into the business practices, it helps to understand the raw technical reality of what you're paying for. Because the gap between what email signature companies charge and what they actually compute is, by any objective measure, staggering.

An email signature is an HTML <table> with inline style attributes. That's the entire technical product. Not a metaphor — literally a table element, with cells for your photo and your text, each styled with inline CSS. No JavaScript. No server-side logic at runtime. No API. No database query when someone receives your email.

Email clients — Gmail, Outlook, Apple Mail, Yahoo — are notoriously restrictive about what HTML they'll render. They strip <style> blocks. They ignore CSS classes. They discard almost everything except inline-styled HTML elements. And the element that has survived this gauntlet since the early days of email is the <table>. So email signatures are tables — not because someone designed it that way, but because tables are the only thing guaranteed to survive the email client rendering gauntlet intact.

This constraint, known to every email developer for two decades, is also the reason email signature generators exist as a category. Most people don't know HTML, and even developers don't want to hand-write table markup. So there's genuine value in a tool that generates this markup from a form. The question is what that tool is worth — and how the industry has answered that question tells you a lot about modern software pricing.

What a signature generator computes

You fill in a form: name, title, phone, email, company, website. You pick a layout. You upload a photo. The generator takes those values and slots them into an HTML template:

<table cellpadding="0" cellspacing="0" style="font-family: Arial, sans-serif;">
  <tr>
    <td style="padding-right: 16px;">
      <img src="[YOUR_PHOTO]" width="80" style="border-radius: 50%;" />
    </td>
    <td>
      <p style="font-size: 16px; font-weight: bold;">[YOUR_NAME]</p>
      <p style="font-size: 14px; color: #666;">[YOUR_TITLE]</p>
    </td>
  </tr>
</table>

That's it. String interpolation. The computation takes microseconds. There is no ongoing service. There is no complex infrastructure. The "product" is a template with your values filled in.

How much do they charge for this?

The answer is: a lot, with escalating tiers designed to push you toward the expensive ones.

WiseStamp: $9–189/month

WiseStamp is one of the most recognized names in the space. Their individual plan starts at $9/month. Their team plans run from $36/month to $189/month. The $189/month "Enterprise" tier is aimed at companies that want centralized signature management — which is a real operational need, but one that amounts to pushing the same template to a list of email addresses.

WiseStamp was acquired by vCita, a small business software company that operates on a recurring revenue model. The acquisition turned what was once a utility tool into a subscription product with a pricing page designed around capturing monthly commitments. The underlying technology — HTML table generation — did not become more complex after the acquisition. The business model did.

Newoldstamp: $7–29/user/month

Newoldstamp charges per user per month, which means costs compound as organizations grow. A ten-person team on their mid-tier plan is paying around $1,740 per year for signatures. Their feature list includes "analytics" — tracking pixels embedded in outgoing signatures that report when recipients open emails or click links. More on that below.

MySignature: $4–8/user/month

MySignature is positioned as the affordable option, but $4–8/user/month still works out to $48–96/user/year. For a twenty-person sales team, that's nearly $2,000 annually for a product that, at its core, generates the same HTML table your browser could assemble in milliseconds.

Exclaimer: $2–4/user/month (enterprise)

Exclaimer, backed by Insight Partners, targets larger organizations and positions itself as an IT-managed solution. Their pricing runs $2–4/user/month billed annually — which sounds cheap until you apply it to a company of 200 people. At that scale it's $5,000– $10,000 per year for centralized signature management. Exclaimer integrates with Microsoft 365 and Google Workspace and applies signatures server-side before delivery, which is a genuinely different technical approach — but the core value proposition is still: here is your employee's name and title, formatted in a table, appended to their emails.

The markup math

WiseStamp's most popular individual plan: $9/month ($108/year).

What you get: one signature template, generated once, stored as a string.

Actual compute cost to generate that signature: roughly $0.000001 — a millionth of a cent.

That's a markup of roughly 10,000,000,000%.

Yes, there's hosting and support overhead. No, that does not explain the gap.

The image hosting trap

The subscription model works because these companies insert themselves between your signature and anyone who reads it — and that insertion creates ongoing dependency.

When you upload your headshot or company logo to a signature generator, they host that image on their servers. Your signature doesn't contain the image — it contains a URL pointing to their server. Something like:

<img src="https://cdn.wisestamp.com/images/users/abc123/photo.jpg" />

Every time a recipient opens your email, their email client makes a request to that server to load your photo. If you cancel your subscription, the server stops responding to those requests. Every email you've ever sent — to clients, partners, prospects, friends — now shows a broken image where your photo used to be. The image wasn't in your email. It was rented from the signature company, and the rental expired.

This is not a technical limitation. It's a structural choice. Images can be embedded directly into an email signature as base64-encoded data URIs — a standard web technique that puts the image data inline in the HTML, with no external server dependency. The resulting HTML is larger in bytes, but it's completely self-contained. It cannot break when you switch services. It does not require anyone's CDN to stay running.

Signature generators use external hosting instead of base64 for one reason: it creates lock-in. Your signature doesn't just live in your email client — it lives on their infrastructure. Cancelling doesn't just lose you the generator. It breaks everything you've already sent.

The tracking pixel problem

Several email signature platforms — including Newoldstamp and others — sell "email analytics" as a premium feature. This means embedding a one-pixel invisible image in your outgoing signature. When a recipient opens your email, their client loads that pixel from the company's server.

The company's server logs the request: timestamp, IP address, approximate location, device type. That data gets surfaced to you as "email analytics" — open rates, click-through rates, geographic breakdowns. The feature is marketed as a productivity tool for salespeople who want to know if their emails were read.

What this means in practice: every person who receives your email — your clients, your family members, your job prospects — is being tracked without their knowledge or consent by a third-party company they've never heard of. The data flows to the signature company, which aggregates it across all their customers, and potentially shares or sells it.

Most people who use these tools have no idea this is happening. The tracking pixel is invisible. It's bundled into the signature HTML the tool generates. The user sees "analytics" as a feature in the upgrade pitch, not as "we're surveilling your recipients."

Apple Mail's Mail Privacy Protection, introduced in 2021, specifically blocks tracking pixels like these. The advertising-technology arms race between email platforms and tracking pixels is a direct result of products like this.

HubSpot gives it away for free. That tells you everything.

HubSpot — a publicly traded company with a market cap in the billions — built a free email signature generator and gives it away with no account required. You fill in your details, pick a template, copy the result. Done.

HubSpot doesn't do this out of charity. They do it because generating an email signature is so computationally trivial that the tool costs them almost nothing to operate, and they can use it as a lead-generation touchpoint for their CRM and marketing platform. The signature generator is a free gift. The ask — a subtle CTA for HubSpot's paid products — comes after.

The existence of HubSpot's free signature generator is the clearest possible market signal about the actual value of signature generation as a standalone product. If a billion-dollar company uses signature generation as a throwaway marketing offer, the activity itself has essentially zero standalone value. The entire email signature SaaS industry is charging recurring fees for something that a well-resourced company treats as too cheap to monetize.

The companies charging $9–189/month aren't providing a more valuable product than HubSpot's free version. They're providing a product with better lock-in. The distinction matters.

Who gets hurt

Email signature subscriptions are not an enterprise software problem. Enterprise IT teams have budgets, procurement processes, and people whose job is to evaluate software costs. The people who get hurt by this pricing are the ones who most needed a straightforward free tool.

Freelancers are the most common victims. A graphic designer, copywriter, or consultant who wants to look professional in client emails doesn't have a company IT department buying their tools. They're paying for everything themselves — and $108/year for a signature is a meaningful expense against a variable income.

Small business owners — a real estate agent, a therapist in private practice, a contractor — want professional communication without a tech stack. They find a signature tool, set it up, and forget about it until the invoice lands. The price is rarely enough to fight over, which is exactly why it works.

Salespeople at small companies are often expected to set up their own signatures. Their employer isn't paying for WiseStamp. They are. A $9/month charge against a personal card, every month, forever, for a signature they set up once and barely think about.

Job seekers are an underappreciated case. Someone actively applying for jobs wants to look professional. They create a signature for their job search, get absorbed in applications, and only notice the charge three months later. By then the signature is in every cover letter email they've sent.

In every case, the tool was set up once, the value was delivered in that first session, and the monthly charge is pure extraction — ongoing payment for a computation that happened once and is now sitting idle in a template database.

Why the free trial is a trap, not a feature

Every major email signature service offers a free trial. The trial isn't generous — it's strategic.

The calculation is simple: the service needs to be free long enough for you to use it, and short enough to convert you before you start wondering whether you need to pay. For email signatures, that window is about two weeks. You set it up, you use it in a handful of emails, you stop thinking about it. Then the trial ends.

Unlike QR codes, which break spectacularly when printed on physical materials you've already distributed, an email signature breaks more quietly. Your headshot disappears. Your formatting collapses. People receiving new emails see something worse than no signature at all — a broken one. It looks unprofessional precisely at the moment the company is waiting for you to pay to fix it.

The asymmetry is deliberate. You've already sent emails with this signature to clients and contacts. Your name is associated with this broken appearance. The fastest way to fix it is to pay. The alternative — finding a new tool, recreating your signature, updating it in your email client — feels like more work than just subscribing, especially if you're in the middle of something important.

That friction is not accidental. It's the product.

The free alternative

We built nah's email signature generator because the gap between what this costs to compute and what the industry charges for it is wide enough to drive a truck through.

The tool generates your signature entirely in your browser. Your name, title, photo, links, and social handles never leave your device during generation. There's no account, no trial, no subscription, and no expiration. You fill in a form, copy the result, paste it into Gmail, Outlook, or Apple Mail, and you're done. The signature is yours.

Photos are embedded as base64 data URIs — the image data is encoded directly into the HTML output. This means your headshot is not hosted on any server. It cannot break when you stop paying anything. It cannot be used to track your recipients. The signature is entirely self-contained, and it will look exactly the same in five years as it does today.

The output is a clean HTML table with inline styles — the same format every email client has supported for two decades. Copy the rich-text version and paste directly into Gmail's signature settings. Copy the HTML and paste it anywhere that accepts raw markup. Download it as a file. The choice is yours.

We don't embed tracking pixels. We don't inject our branding into your signature. We don't host your images on infrastructure you'll eventually have to pay to keep alive. The source code is public on GitHub.

What "free" actually means here

No account required. No credit card. No trial that converts to a subscription. No external hosting that can break. No tracking pixels. No expiration. The computation happens in your browser. The result belongs to you.

One session. Yours permanently.

How to set up a signature that you'll never have to pay for

Whether you use our tool or another genuinely free one, here's how to make sure you're not setting yourself up for a subscription you didn't intend to start.

  1. Never enter a credit card for a "free" signature tool. If the tool asks for payment information during a free trial, that trial will convert. If the free tier genuinely doesn't need your card, they won't ask for it.
  2. Ask where your images are hosted. If the tool uploads your photo to their servers (you'll see a URL like cdn.signaturetool.com/... in the generated HTML), cancelling will break your photo in every email you've ever sent. Use a tool that embeds images as base64, or host your own photo somewhere permanent.
  3. Check for tracking pixels in the generated HTML. Look for tiny images with URLs that include words like "track," "open," "pixel," or "beacon." If you see them, they're watching your recipients.
  4. If you're already paying for a signature service, export or copy the raw HTML before cancelling. Paste it into a text file. You'll still need to fix any broken image URLs, but the layout and formatting will be preserved.
  5. Gmail, Outlook, and Apple Mail let you paste rich HTML directly. In Gmail, go to Settings > See all settings > General > Signature. Paste rich text there — no code editing required. The format will be preserved automatically.

The email signature industry is a case study in what happens when a simple utility gets wrapped in recurring billing infrastructure. The underlying computation — take these inputs, produce this table — hasn't changed. What's changed is that SaaS pricing models have been applied to it, complete with trials, tiers, per-user costs, and image hosting dependencies designed to make cancellation painful.

HubSpot's decision to give this away as a free marketing touchpoint isn't altruism — but it does tell you what the computation is worth when stripped of lock-in mechanisms. The answer is: not enough to charge for. The image hosting, the tracking pixels, the trial-to-subscription conversion — these aren't features. They're the mechanism by which a zero-dollar computation becomes a nine-dollar monthly bill.

Your email signature is an HTML table. It should cost you nothing.