The External Email Tag in Microsoft 365 clearly marks emails from outside your organization, making them easier to spot. Instead of relying on the older methods — such as prepending “[External]” to the subject line or inserting a yellow warning banner into the message body — this feature adds a clear visual indicator directly next to the sender’s email address in Outlook.This subtle but powerful change ensures users can immediately see whether the message is from an internal or external source, both when receiving and replying to emails.
By integrating the warning into the sender identity itself, the indicator feels more natural, harder to overlook, and less disruptive to message readability.
This control not only reduces phishing risk but also supports compliance with security frameworks such as ISO 27001 and NIST by strengthening user awareness.
The benefits are significant.
Method | Pros | Cons |
---|---|---|
External Email Tag (New) | Integrated next to sender, modern, hard to miss, clean design | Requires newer Outlook clients |
Subject Prefix ([External]) | Works everywhere, simple to set up | Clutters subject lines, easy to spoof, breaks threading |
Yellow Banner in Body | Visible in most clients, straightforward | Can be ignored, adds noise, not linked to sender identity |
See samples from Outlook Desktop:
Figure 1: Incoming email with External tag.
Warning and color mark the email as external, there is also action the recipient could take if needed direct.
Figure 2: Actions for Incoming email with External tag.
Figure 3: If domain missing Email Security Frameworks (SPF,DKIM/DMARC), verification can't be done (Trash folder).
Figure 4: Outgoing email with External tag.
The yellow frame appears as soon as email address has been written or added.
This will require PowerShell to be started as Administrator, well configured computer (AntiMalware/EDR) will not allow you to modify %userprofile%\Documents\WindowsPowerShell
. If nothing happens verify that you are allow to do this temporary.
Install-Module -Name ExchangeOnlineManagement -Force
Connect-ExchangeOnline -userPrincipalName yourusername@example.com
Get-ExternalInOutlook
Identity Enabled AllowList
-------- ------- ---------
1111111a-aaa1-222b-3333-444444444444 False {}
# Enable
Set-ExternalInOutlook -Enabled $true
# Disable
Set-ExternalInOutlook -Enabled $false
Tip: If you dont like it turn it off.
Use the Get-ExternalInOutlook
command to check current status.
Tip: Important: 🛡 Avoid using the AllowList unless there is a strong business need — it weakens protection against impersonation.
# Add
Set-ExternalInOutlook -AllowList @{Add="example.com"}
# Remove
Set-ExternalInOutlook -AllowList @{Remove="example.com"}
Q: Does this block external emails?
A: No, it only highlights them for awareness.
Q: Can I exclude trusted partners?
A: Yes, via AllowList — but we recommend doing this only when absolutely necessary.
Q: Will this work on mobile?
A: Yes, the external tag is supported in Outlook mobile apps.
Q: Will this confuse employees?
A: No. The indicator is subtle but clear. It works as a simple reminder, reinforcing training without disrupting daily work.
Recommendation: Enable External Email Tags as the preferred method for distinguishing external messages. It offers stronger security, a cleaner experience, and aligns with Microsoft’s modern email security strategy.