Professional email signatures  ·  One-time $9.99  ·  No subscription ever

SignatureFox

How to Set Up an Email Signature in Outlook (All Versions)

Your email signature is often the first impression you make on clients, colleagues, and prospects. In Outlook, a poorly configured signature—or worse, no signature at all—sends the message that you're disorganized or unprofessional. This guide walks you through setting up a professional email signature across every version of Outlook you might use: desktop versions (2016, 2019, 365), Mac, and mobile devices. You'll learn the exact steps for each platform, discover common rendering bugs that plague Outlook users, and get practical fixes that actually work. Whether you're adding your logo, phone number, or legal disclaimers, this guide covers it all. By the end, you'll have a signature that displays correctly every single time—no broken images, no misaligned text, no formatting disasters.

GmailOutlookApple MailOne-time $9.99No subscription

Setting Up Your Signature in Outlook 2016, 2019, and 365 on Windows

The desktop versions of Outlook handle signatures similarly, but the exact menu path matters. Open Outlook and click the File tab at the top left. You'll see a list of options; select Info, then click Account Settings, and choose Account Settings again from the dropdown. A new window opens. Click the Signatures tab—this is where all your signature magic happens. You'll notice three buttons: New, Rename, and Delete. Click New to create your first signature. Give it a descriptive name like "Professional" or "Client-Facing" so you can have multiple signatures and choose which one to use for each email. Once you've named it, the Edit Signature section appears below. This is your text editor. Type or paste your signature content here: your name, title, company, phone number, website, and any other details. For Outlook 2016 and 2019, the text formatting options are limited but functional—you can make text bold, italic, change colors, and add line breaks. Avoid complex formatting. Outlook renders HTML differently than web browsers do. After you've entered your text, scroll down to the Choose Default Signature section. You'll see two dropdowns: one for New Messages and one for Replies and Forwards. Set both to your new signature, unless you want different signatures for different email types. Some professionals use a shorter signature for replies to save space. Once you've configured everything, click OK to save your signature. From now on, every new email you compose will automatically include your signature. Here's a critical step most people skip: test it. Send yourself an email and check how it renders in your inbox. Look for alignment issues, color problems, or images that don't load. Outlook 365 introduced better HTML rendering than 2016 and 2019, so if you're using an older version, anticipate that your signature might look slightly different than you designed it. If you use multiple email accounts in Outlook, you can create a signature for each one. When you compose a new email, the signature automatically applies based on which account you're sending from—as long as you set it correctly in the Account Settings dialog.

Configuring Signatures in Outlook for Mac

Mac users navigate Outlook's signature settings through a different menu structure. Click Outlook in the top menu bar, then select Preferences. A window opens with several icons at the top. Look for the Mail icon and click it. You'll see multiple options listed; find and click Signatures. The Signatures panel loads. On the left side, you'll see a list of your email accounts. Click the account you want to add a signature to. On the right side, you'll see a plus (+) button at the bottom left. Click it to create a new signature. A text field appears where you can name your signature. Type a name and press Enter. Once named, the signature editor opens. This is where you type or paste your signature content. The Mac version offers text formatting options in a small toolbar above the text area—you can bold, italicize, underline, and change text colors. One important note: Mac Outlook doesn't embed images as base64 like some signature generators do. If you try to insert an image directly from your Mac, it might break when you send the email or appear as a broken link in some email clients. Use URLs to images hosted on your company's server or a CDN instead. To set this signature as your default, look for a dropdown menu next to your account name. Set it to the signature you just created. If you want different signatures for replies versus new messages, you can configure that here too. Test your signature by sending a test email to yourself from your Mac Outlook and checking how it renders when you open it. Pay special attention to line spacing and color rendering—Mac and Windows Outlook sometimes display colors slightly differently. If you sync your Mac Outlook with an Exchange server or Microsoft 365 account, your signature settings sync across devices, but only within the Outlook app itself. Phone signatures don't pull from Mac settings; you'll need to configure those separately.

Adding Email Signatures on Outlook Mobile (iOS and Android)

Mobile Outlook has serious signature limitations compared to desktop versions. The mobile app doesn't allow you to design rich HTML signatures with logos and complex formatting. Instead, you can only add plain text signatures. Open the Outlook app on your phone and tap the settings gear icon (usually at the bottom or top right, depending on your device). Look for Mail Settings or Signature Settings. Different versions of the mobile app hide this in slightly different places. On iOS, you might find it under Settings > Mail > Signature. On Android, it's often in the app's built-in settings menu. Once you find the signature section, you can add plain text only. Keep your mobile signature short and simple: your name, title, and phone number work well. Some professionals add a note like "Sent from my iPhone" but that's optional. One major caveat: if you've created a formatted signature in your desktop Outlook, it won't automatically transfer to mobile. The mobile app generates a default signature, but it won't match your desktop design. This creates a problem: your emails sent from mobile look completely different from those sent from desktop. To work around this, add a simple text signature to mobile that matches your brand voice, and accept that mobile signatures will be simpler than desktop ones. Another option: don't use mobile signatures at all. Just add a note at the bottom of your email saying "Sent from my phone—please excuse any typos." This sets expectations and avoids the visual mismatch. If your organization uses Microsoft 365 with Exchange, your desktop signature sometimes propagates to mobile, but this behavior is inconsistent. Test it on your specific phone and account setup. For serious mobile signature needs, consider signing emails with a text-based identifier instead of a formatted signature. For example, you could end every mobile email with a dash, your initials, and the date. This maintains professionalism without relying on formatting that mobile doesn't support well. The reality is that mobile email clients simply don't render complex signatures reliably, so designing simpler signatures for mobile is the pragmatic choice.

Common Outlook Rendering Bugs and How to Fix Them

Outlook is notorious for breaking email signatures in ways that perplex even experienced users. The biggest culprit is Outlook's use of Word as its rendering engine on Windows. Word follows different HTML standards than web browsers, which means code that looks perfect in other email clients falls apart in Outlook. The most common bug: images don't load or display as broken links. This happens because Outlook sometimes doesn't recognize image references correctly, especially if you've embedded images as base64 code. If you're experiencing this, verify that your signature generator produces HTML that Outlook specifically supports. Look for table-based layouts with inline styles—this is the gold standard for Outlook compatibility. Avoid CSS files and external stylesheets; Outlook ignores them. Another frequent issue: text alignment shifts or fonts change unexpectedly. This occurs when you use web-safe fonts that Outlook doesn't recognize. Stick to universal fonts like Arial, Helvetica, Georgia, and Times New Roman. When you specify fonts, include fallbacks: "Arial, Helvetica, sans-serif." This tells Outlook to use Arial first, but fall back to Helvetica if Arial isn't available. Color rendering sometimes goes wrong too. Outlook occasionally interprets hex color codes incorrectly, especially in older versions. If your signature's colors look dull or wrong in Outlook, try using named colors instead (like "blue" or "red") or test different hex codes. Background colors in signature cells sometimes disappear entirely in older Outlook versions. Use a lighter background color or eliminate background colors altogether if they're non-essential. Line spacing and padding cause misalignment. Outlook adds extra space around elements unpredictably. If your signature looks compressed or scattered, adjust padding in table cells and increase line height in your HTML. Add margin and padding values explicitly to every table cell. Hyperlinks sometimes change color or become underlined unexpectedly. Outlook applies its own link styling on top of your custom styles. To override this, set link colors in your HTML using inline styles on the anchor tag itself. One tricky bug affects the Reply and Forward function: your signature might appear twice if it's not properly marked as part of the original email body. This happens because Outlook treats signatures specially in threaded conversations. If you notice your signature duplicating, check that your HTML includes proper line breaks between the email body and the signature block. Finally, the most frustrating bug: Your beautiful signature looks perfect on your screen but appears completely different on the recipient's screen, even if they use Outlook too. This is because of version differences, display settings, and DPI scaling on different monitors. Always test your signature on multiple Outlook versions and devices before rolling it out company-wide.

Best Practices: Design Your Signature for Maximum Impact

Creating a signature that works across all Outlook versions requires balancing professionalism with technical reality. Start with essential information only: your full name, job title, company name, phone number, and email address. These elements should always be present. Everything else—your photo, company logo, social media links, tagline—is secondary. If you include them, make sure they enhance your brand rather than clutter your signature. Keep the width under 600 pixels. Outlook on mobile devices has narrow screens, and a signature wider than 600 pixels might wrap awkwardly or require horizontal scrolling. Stick to one or two colors plus black text. Signatures with rainbow colors or busy designs look unprofessional and distract from your message. Your company's brand colors work perfectly. Font size matters. Body text should be 11 to 14 pixels; smaller text might be unreadable on some phones and tablets. Your name can be slightly larger (16-18 pixels) to stand out. Avoid using all capital letters for large sections—it reads as shouting. Mix uppercase and lowercase for readability. If you include a logo, keep it small—no larger than 100 pixels wide. Large logos stretch the signature and make it look excessive. Embed your logo as base64 code or reference it with a URL. Base64 embedding is safer because the image travels with the email and never breaks due to missing server files. If you use URLs instead, ensure the image is hosted on a reliable server that never goes down. Social media links work well in signatures, but limit yourself to two or three platforms. Include only the networks where your company actively posts. Avoid cluttering your signature with links to every social platform. Add a phone number. Yes, your email address is in the From field, but including your phone number gives recipients an alternative way to reach you. This is especially valuable for client-facing roles. If you include a website link, make sure it's clickable. Test that clicking the link actually goes to the right page. Some Outlook versions have issues with hyperlinks, so verify yours works in both desktop and mobile Outlook. Use a disclaimer or legal note if required by your industry or company policy. Legal and financial professionals often need regulatory disclaimers. Keep it brief and don't make it your signature's focal point. Finally, create a signature version for external emails and a shorter version for internal emails. Internal colleagues don't need your full contact information every time. Many organizations use internal signatures with just a name and internal extension, reserving the full signature for external communications. This reduces email clutter while maintaining professionalism.

Key Takeaways

  • Desktop Outlook (2016, 2019, 365) stores signatures in File > Info > Account Settings > Signatures tab; always test your finished signature by sending a test email to yourself before relying on it for client communications.
  • Mac Outlook requires clicking Outlook > Preferences > Mail > Signatures, and you cannot reliably embed images as attachments—use URLs to hosted images instead to avoid broken links.
  • Mobile Outlook only supports plain text signatures, so create a simple text-based signature for phones and accept that it will differ from your desktop version rather than fighting Outlook's mobile limitations.
  • Outlook's Word-based rendering engine breaks standard HTML, so always use table-based layouts with inline styles, avoid external CSS, and stick to universal fonts like Arial and Helvetica to prevent alignment and formatting disasters.
  • Keep signatures under 600 pixels wide, limit to one or two brand colors, and include only essential contact information plus one small logo—overloaded signatures look unprofessional and perform poorly on mobile devices.

Frequently Asked Questions

Free Preview

Build Your Signature

Live preview instantly · Pay $9.99 only when you download · No account needed

Open Generator

Related Resources

Stop wasting time troubleshooting broken signatures. Get a professional HTML signature designed for Outlook in minutes—just $9.99, one-time, no subscriptions ever.

One-time $9.99. No subscription. Delivered to your inbox instantly.

Create My Signature — $9.99

🔒 Secure checkout via Stripe · Instant delivery