Microsoft 365 Admin Notifications to your user mailbox with Plus addressing


Licensing your Entra Administrator accounts for email is a common practice to ensure you are across service health updates, user, security and billing alerts but by doing this it introduces security risks and additional costs for mailbox licensing. As a best practice, privileged accounts should remain isolated from unnecessary communication channels to minimise vulnerabilities or avenues of attack. Using Plus Addressing we a simple and cost-effective way to receive admin notifications without assigning a mailbox license.

Firstly, ensure that your M365 Exchange Online Org has plus addressing enabled. To confirm, log into Exchange Admin Centre (EAC), navigate to Settings and Mail Flow. Once the blade opens on the right, ensure that “Turn off plus addressing for your organization” is not ticked (this is usually not unless you have a very old tenancy). There is nothing you need to do on the user mailbox side.

Now navigate to Entra Admin Centre and go to the global admin user that you want to add the plus address to. Select Properties then click Edit Contact Information. Under the Email Contact field, we can add the custom plus address such as [email protected] we can use anything you want for the plus address (similar to the Gmail feature). Click Save to make that permanent.

We can also easily set this property using Microsoft Graph PowerShell using the following commands

Connect-MgGraph -Scope User.ReadWrite.All
Update-MgUser -Userid [email protected] -Mail [email protected]

Now once the contact property has been added this should start working. You can test this by sending an e-mail to the plus address you’ve specified. I’d also suggest setting up an Outlook rule to keep the inbox tidy and again you can simply target anything sent to the plus address.


Leave a Reply

More Posts

Letting Exchange accept Mail from other domains

One of the usual things I perform as an IT Consultant is maintenance and configuration tasks on Exchange. One of the most requested tasks is accepting e-mail for more than one domain. Most of my clients run Windows SBS Server 2008 which comes with Exchange 2007. In this article I will walk through accepting mail […]

The Network Policy Server Service (NPS or IAS) Fails to Start on Windows SBS Server 2008 with an unspecified error (0x80004005)

So I was recently helping out a client clean up their Small Business Server environment, one thing they weren’t using was SharePoint, so we decided to remove it from their SBS 2008 server. The removal went smoothly, simply uninstalling SharePoint Services via Add/Remove control panel did the trick. But after a restart we found that […]

Exchange Management with AD Users when using RSAT for Windows 7

One of the little things with the have annoyed me since I’ve started using the RSAT tools in Windows is the fact that there is no easy way to manage Exchange. Sure I can install the Exchange Management Pack and use that, but like most admin’s AD Users and Computers is open just about all […]