You’ve just clicked Send on a sensitive vendor contract email — and then remembered: did Outlook actually encrypt it? You glance at the clock. 97 seconds until your IT team’s standup. No time to dig through settings. You need to know *right now* whether that message left your machine protected.
What It Does
TLS (Transport Layer Security) is how Outlook protects email in transit — not at rest, not in your mailbox, but while it’s flying between your PC and your mail server. Think of it like wrapping your email in a tamper-evident envelope as it travels across the internet. If your organization uses Exchange Online (Microsoft 365), Outlook uses STARTTLS automatically for outbound SMTP traffic — but only if your outgoing server replies with '220 STARTTLS' during the initial handshake. That’s the catch most people miss: Outlook doesn’t negotiate TLS. It waits for the server to offer it first.
A concrete use case: Your finance team sends an invoice to a supplier via Outlook. Without TLS, that email could be intercepted on a public Wi-Fi network between your laptop and the ISP. With TLS enabled and accepted, the connection is encrypted before the message body even transmits.
How to Set It Up
Outlook doesn’t have a global ‘Enable TLS’ toggle. You configure it per-account — specifically, inside the SMTP server settings. And yes, this applies to both POP3/IMAP accounts and Exchange accounts (though Exchange accounts usually handle TLS behind the scenes).
On Windows (Outlook 365, 2019, 2016):
Go to File > Account Settings > Account Settings…. Select your email account → Change. Click More Settings… → Outgoing Server tab. Check My outgoing server (SMTP) requires authentication, then click Settings…. Under Use the following type of encrypted connection, choose TLS or SSL. Note: SSL is outdated and rarely used today; TLS is the correct choice.
On Mac (Outlook for Mac 16.84+):
Outlook > Preferences > Accounts, select account → Advanced. Scroll to Outgoing Mail Server (SMTP) → click the gear icon → Edit SMTP Server…. Under Use SSL, uncheck it. Under Use TLS, check it. Save.
Keyboard shortcut: Ctrl+Shift+Alt+M opens the Account Settings dialog directly in Windows Outlook.
Configuration Options
The real confusion starts here — because Outlook gives you four TLS-related options, but they’re buried under different names and behave differently depending on your Outlook version and protocol. Below is what each setting does, where to find it, and whether it’s safe to use.
| Step | Action | Menu Path | Shortcut |
|---|---|---|---|
| 1 | Enable TLS negotiation for outgoing mail | File > Account Settings > Change > More Settings > Outgoing Server > Settings > Use TLS | None |
| 2 | Force TLS (fail if unavailable) | Same dialog, but also check 'Require TLS' (Outlook 365 only — not in 2016) | N/A |
| 3 | Use legacy SSL encryption (port 465) | Same dialog → 'Use SSL' + change port to 465 | N/A |
| 4 | Disable encryption entirely | Leave both TLS and SSL unchecked, port 25 or 587 | N/A |
| 5 | Verify TLS was used for a sent message | Open Sent Items → double-click message → File > Properties → Internet headers | Alt+Enter |
| 6 | Check if Exchange Online enforced TLS | Admin center > Exchange > Mail flow > Connectors → view connector logs | N/A |
Real-World Examples
Example 1: Sending to a partner using Gmail
You send ‘Q3 Budget Review — Action Needed by Friday’ to a vendor whose domain uses Gmail. Outlook negotiates STARTTLS with Gmail’s SMTP servers. You can confirm it worked by opening the sent message, pressing Alt+Enter, and scanning the Internet headers for STARTTLS and encipherment. No manual config needed — it just works.
Example 2: Internal HR alert failing silently
Your company uses an on-premises Exchange 2013 server without TLS enabled on port 587. Outlook tries STARTTLS, fails, and falls back to plain text — without warning. The email sends, but isn’t encrypted. You only discover this when someone runs a packet capture on the internal network.
Example 3: Mac user with custom SMTP
An employee uses Outlook for Mac with a Zoho Mail account. They set up SMTP on port 587, enable TLS, but forget to uncheck ‘Use SSL’. Outlook ignores TLS and attempts SSL instead — which Zoho rejects. Result: ‘Authentication failed’. The fix? Uncheck SSL, check TLS, restart Outlook.
Limitations and Gotchas
TLS only protects the connection — not the email content itself. If your recipient’s server doesn’t support TLS, Outlook won’t encrypt the hop between their server and theirs. That’s outside your control.
Outlook Web App (OWA) handles TLS differently: it relies entirely on the browser and Microsoft’s infrastructure. There’s no client-side TLS setting to tweak — it’s all managed server-side by Microsoft 365.
Here’s the surprising part: Outlook 2016 and earlier don’t support TLS 1.2 by default. If your mail server disables TLS 1.0/1.1 (as many do for security), Outlook 2016 will fail to connect unless you apply the Windows registry patch or upgrade. Outlook 365 and 2019 use TLS 1.2 out of the box.
Admin overrides matter. Even if you configure TLS manually, Group Policy or Intune policies can override your settings — especially ‘Require TLS for SMTP’ or ‘Block legacy auth’. Check with your IT team before assuming your local config wins.
One final gotcha: ‘TLS’ in Outlook’s UI doesn’t mean ‘always-on encryption’. It means ‘attempt STARTTLS, fall back to plain text if rejected’. There’s no built-in option to *refuse* sending unless TLS succeeds — unless you’re using Exchange Online mail flow rules (which require admin access).
Next step: Verify one sent email right now.
| Action | Where to Do It | What to Look For |
|---|---|---|
| Open a recent sent message | Sent Items folder → double-click | Subject: ‘Re: Re: Re: Project Phoenix Timeline’ |
| View message properties | Press Alt+Enter | Tab labeled ‘Details’ or ‘Internet headers’ |
| Search headers for encryption | Ctrl+F → type ‘STARTTLS’ | Look for ‘X-MS-Exchange-Organization-AuthAs: Anonymous’ + ‘encipherment’ |