The External Recipient MailTip is not enabled by default in Exchange Online, but it’s useful for warning users when they are about to send an email to someone outside your organisation.
The External Recipient MailTip offers several benefits:
Prevents Unintended Information Disclosure — It alerts users when they are about to send an email to recipients outside their organisation, helping prevent accidental sharing of sensitive or confidential information.
Enhances Security Awareness — By notifying users about external recipients, it raises awareness of potential phishing or impersonation attempts where someone might be pretending to be an internal contact.
Improves Communication Quality — Knowing that an email will be sent outside the organisation encourages users to review the content, tone, and wording of their messages to ensure they are appropriate for external audiences.
Consistency Across Clients — The MailTip feature works across Outlook desktop, Outlook on the web (OWA), and Outlook mobile, giving you consistent coverage without third-party plugins.
The external recipient mailtip appears as a yellow banner at the top of the message when composing an email to an external address:
Outlook (classic) — A yellow bar reads “This recipient is outside your organisation.”
Outlook (new) / OWA — A similar yellow banner displays the same warning above the recipients list.
Outlook (mobile) — The mailtip is shown inline in the compose view.
You can check your current MailTip settings in Exchange Online PowerShell:
Get-OrganizationConfig | fl Mailtips*
The default output looks like this:
MailTipsAllTipsEnabled : True
MailTipsExternalRecipientsTipsEnabled : False
MailTipsGroupMetricsEnabled : True
MailTipsLargeAudienceThreshold : 25
MailTipsMailboxSourcedTipsEnabled : True
These settings control the following:
| Setting | Description | Default |
|---|---|---|
MailTipsAllTipsEnabled | Master switch for all MailTips | True |
MailTipsExternalRecipientsTipsEnabled | Warns when composing to external recipients | False |
MailTipsGroupMetricsEnabled | Enables MailTips that rely on group metrics data | True |
MailTipsLargeAudienceThreshold | Number of recipients that triggers a “large audience” warning | 25 |
MailTipsMailboxSourcedTipsEnabled | Enables MailTips based on mailbox data (out-of-office, full mailbox) | True |
MailTips are enabled by default as a feature, but the external recipients tip is disabled by default. To enable it, run:
Set-OrganizationConfig -MailTipsExternalRecipientsTipsEnabled:$True
This applies to all users across all Outlook clients — desktop, OWA, and mobile — immediately (allow a few minutes for propagation).
The default threshold of 25 recipients may be too low for organisations that regularly send to distribution groups. Adjust it with:
Set-OrganizationConfig -MailTipsLargeAudienceThreshold 50
This will show a warning when a user sends to more than 50 recipients, reminding them to use Bcc or a distribution list.
If you don’t want users to see out-of-office MailTips (e.g. to reduce noise for heavily automated mailboxes):
Set-OrganizationConfig -MailTipsMailboxSourcedTipsEnabled:$False
MailTip not showing for external recipients
Get-OrganizationConfig | fl MailTipsExternalRecipientsTipsEnabled — it should return True.MailTip still showing after disabling
Set-OrganizationConfig -MailTipsExternalRecipientsTipsEnabled:$False to confirm the change.Users complain about the warning