MailTips in Office 365

MailTips, or mail tips, are the notifications Outlook and Outlook on the web shows when an email you create meets some requirements. They appear, for example, if a message is about to be sent to external recipients or to someone who has automatic replies turned on. Those notifications can prove to be very helpful or, on some occasions, even life-saving.

MailTips in Office 365

About MailTips

The great thing about MailTips in Office 365 is that they show up automatically when the message meets certain criteria. When you type an email, Outlook or Outlook on the web queries your (and, sometimes, also the recipient’s) mail server and – if the message meets the specified conditions – a MailTip appears right above it.

Since MailTips appear after Outlook “asks” a mail server if they should make an appearance, you should keep in mind that there is a few-second-long lag before the email client displays a notification. What is more, if Outlook is in offline mode, no MailTip will show up.

MailTips are supported since Outlook 2010. It means that they will not appear in Outlook 2007 or earlier.

One of the most frequently asked questions concerning mail tips is whether you can modify “what they say”. Unfortunately, the only MailTip for which you can modify the notification’s contents is a Custom MailTip, which is limited to 175 characters (learn more in the section below).

Both in PowerShell and in the HTML source code view, MailTips seem like HTML entities with the <html> and <body> tag. You might assume it means you can change their styling. The fact is that you can’t. Even the <strong> tags are ignored, so you have to rely entirely on the Outlook graphic designers’ idea.

The list of MailTips types

MailTips can be separated into a few groups: General, Relying on mailbox data and Custom. Depending on the type, different types of settings are used to control the appearance of MailTips.

General MailTips:

  • Invalid Internal Recipient – appears if the sender attempts to send an email to a non-existent internal contact (identified by the internal domain).
  • Restricted Recipient – applies if the recipient is restricted via Message Delivery Restrictions. Blocking certain recipients on the mail flow level will not bring up the MailTip.
  • External Recipients – MailTip shows up for messages sent to external domains. It is not possible to make it appear for chosen domains only, it is an on/off toggle kind of setting.
  • Large Audience – shows up whenever a message is going to be sent to many recipients. By default, the limit is set to 25 users or more. Exchange counts the number of users in distribution lists and groups.
  • Moderated Recipient – if the recipients’ group is subject to message approval, a MailTip will inform the sender about this fact.
  • Reply-All on Bcc – hitting the Reply-all button while being a BCC Recipient will result in a warning.
  • Oversize Message – this MailTip warns that the message about to be sent cannot be delivered due to its size. The settings that are checked are organization-wide settings and recipient-specific settings. Limits defined on Exchange send and receive connectors will not result in displaying this MailTip.

MailTips relying on mailbox data

The following two types of MailTips are different because they rely on mailbox data, and not on organization-wide settings.

  • Out of office – this MailTip type is probably one of the most often to be seen. The notification shows up when the recipient has automatic replies turned on. It informs that an automatic reply will be sent back and shows its contents.
  • Mailbox full – shows up whenever the message cannot be delivered because the recipient’s Mailbox is full.

Custom MailTips

Custom MailTips are shown when you choose a recipient who has the MailTip property configured. They can be specified for each kind of recipient, that is for all types of mailboxes, external contacts, and groups.

Set up MailTips in Office 365

The first thing you need to know about managing MailTips in an Office 365 organization is how to check the existing ones. A simple cmdlet returns all organization-related MailTips settings:

Get-OrganizationConfig | select *mailtips*

Check MailTips settings PowerShell

MailTipsAllTipsEnabled is the master setting, which disables or enables all MailTips for an organization. MailTipsExternalRecipientsTipsEnabled turns the External Recipients MailTips on or off, and is the only mail tip-related setting which is disabled by default. MailTipsGroupMetricsEnabled enables or disables MailTips that rely on group metrics data. MailTipsLargeAudienceThreshold defines how many recipients are defined as “many” and, finally, MailTipsMailboxSourcedTipsEnabled applies to the MailTips relying on mailbox data.

Turning any of those settings on is as easy as using the following cmdlet:

Set-OrganizationConfig -MailTipsAllTipsEnabled $true


To list all recipients who have Custom MailTips enabled, the easiest way is to use the following cmdlet:

Get-Mailbox | where mailtip -ne $null | FL name,mailtip


Changing Get-Mailbox to Get-MailContact or Get-DistributionGroup will check other types of recipients.

Check existing Custom MailTips in Office 365

Setting the custom MailTip can be done via Exchange admin center (Edit the recipient) or by PowerShell:

Get-MailContact -MailTip “<Up to 175 characters of your custom message>”


Again, for other recipient types, change the Get-MailContact cmdlet to another Get cmdlet.

MailTips in Organization Relationships

If you have any Organization Relationships, you can set the MailTips access level to either All, Limited or None. (Set-OrganizationRelationship -Identity “Green Zorro” -MailTipAccessLevel Limited).

Access Level set to All will make all MailTips types available, while the Limited access level will make only Automatic Replies, Oversize Message, Restricted Recipient and External Recipients MailTips possible to appear. None, as you can guess, will disable mailtips; however, it is better to use -MailTipsAccessEnabled $false.

If you wanted to exclude some domains from the external recipient MailTip, you might be disappointed to know that it is not possible. This MailTip type will be excluded only for your internal domains.

You could also turn off the external MailTips and try to solve the problem by creating a custom MailTip for the contacts that need it. I won’t mention the low efficiency of this approach, since you can set custom MailTips even for all users at once using PowerShell, but there are also other problems. If anyone sends an email to someone who is not an Email Contact in Exchange Online, the custom MailTip will not show up.

Another approach to warning users about possible external recipients is to add a message to emails originating from outside of your organization. This method notifies users whenever they receive an email from external senders.

A user’s perspective on MailTips

From the user’s viewpoint, MailTips can be helpful, annoying or invisible. That is why some users may want to turn those notifications off.

No matter how much effort you might put into fine-tuning the MailTips settings on your mail server, for users disabling MailTips is as simple as going to Outlook settings (File>Options>Mail>MailTip).

Outlook Mail Settings - Mail Tips

And disabling whichever notifications they find annoying or not useful:

Outlook MailTips Options in Outlook

On the other hand, Outlook on the web does not allow such freedom. At least at the moment.

The bottom line is that MailTips are helpful. In most cases, they even include a button which allows the sender to delete the “problematic” recipients. At the same time, mind that they are not a fool-proof way of preventing your users from making mistakes, so it is crucial to use them together with other security measures and lots of user training.

Useful articles:

Tools for Microsoft 365

4 thoughts on “MailTips in Office 365


  1. Hi,
    Is it possible to make a specific mailtip bigger on screen? For example the one that warns the user that he will send an email to someone outside the organization. Thanks

    • Hello Bruno,
      Unfortunately, you cannot disable just the accessibility issues MailTips alone – it is only possible to disable all MailTips in the organization via PowerShell (Set-OrganizationConfig -MailTipsAllTipsEnabled $false) or via GPO.

Leave a Reply

Your email address will not be published.

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <s> <strike> <strong>

*

CodeTwo sp. z o.o. sp. k. is a controller of your personal data.
See our Privacy Policy to learn more.