Tested tool guide
Tested browser tools
Checked August 16, 2026
What Email Signature Generator does, with a checked example
This tool assembles a ready-to-paste HTML email signature from the fields you fill in: name, title, company, email, phone, and optional extras such as a logo, social links, and a tagline, with a few choices of layout, colors, and fonts. It produces HTML source code rather than a picture, and that code is what you paste into the signature settings of Gmail, Outlook, or Apple Mail. Everything runs in the browser, so the personal details you type are not uploaded anywhere. The surprise most people hit: the preview and the rendering inside a recipient's mail client can differ, so judge the result from a real sent email.
Worked example
A concrete input and expected output from the current implementation.
Input
Name: Jane Doe
Title: Marketing Manager
Company: Acme Corp
Email: [email protected]
Phone: +1 (555) 013-2244
->
Expected output
HTML code, not a rendered image. The name is set in bold, the email address appears twice in the code, once as visible text and once inside the link href="mailto:[email protected]" (24 characters), and the phone number is wrapped in a tel: link. All 68 characters of the values you typed appear in the output unchanged, embedded in the surrounding markup, ready to be copied and pasted into an email client's signature settings.
The generator inserts each entered value into its HTML output. The email address must appear twice because a link's visible text and its href are separate parts of the markup, and 24 characters is the length of "mailto:[email protected]". The 68-character figure is the sum of the five values: 8 + 17 + 9 + 17 + 17.