Skip to content

How to Create a Shared Mailbox in Microsoft 365

Create a shared mailbox in Microsoft 365 the right way: admin center and Exchange admin center steps, Full Access vs Send As permissions, and the 50GB license rule.

MGMCSA Guru Team June 3, 2026 8 min read
Diagram-style cover showing a single shared mailbox in Microsoft 365 with several users granted Full Access and Send As permissions

A shared mailbox is the cleanest way to handle a team address like info@, support@, or sales@ without paying for an extra user account or sharing one person’s password. Several people open the same mailbox, read what lands there, and reply from the shared address. Nothing is tied to a single user, so when someone leaves the team you just remove their access instead of untangling a personal account.

There are two places you can create one: the Microsoft 365 admin center, which is quick and fine for most cases, and the Exchange admin center (EAC), which gives you finer control over permissions and delegation. This walkthrough covers both, explains the permission types that trip people up, and clears up the license question that comes up on almost every ticket.

Before you start

A few things are worth confirming up front so you don’t create a mailbox and then fight with permissions later.

Before you create the shared mailbox

  • You have Exchange Administrator or Global Administrator rights
  • You've agreed the address (e.g. [email protected]) and a clear display name
  • You know which users need access and what they need to do (read only vs send)
  • The domain you want to use is already verified in the tenant
  • You understand the 50 GB license-free limit (covered below)

Option 1: Create it in the Microsoft 365 admin center

This is the fastest route and the one to use unless you have a specific reason to go deeper.

  1. Sign in to the Microsoft 365 admin center (admin.microsoft.com).
  2. Go to Teams & groups → Shared mailboxes (older tenants list it under Groups → Shared mailboxes).
  3. Click Add a shared mailbox.
  4. Enter a Name (the display name users will see) and the email address, then pick the verified domain.
  5. Click Save changes. The mailbox is created in a minute or two.
  6. On the next screen, choose Add members to this mailbox to grant access right away, or come back to permissions later.

That’s the whole creation step. The part people get wrong is the permissions, so it’s worth slowing down there.

Option 2: Create it in the Exchange admin center

The EAC (admin.exchange.microsoft.com) is the better choice when you want to set Full Access, Send As, and Send on Behalf separately, or manage automapping behaviour.

  1. In the EAC, go to Recipients → Mailboxes.
  2. Click Add a shared mailbox.
  3. Fill in the display name and email address, pick the domain, and save.
  4. Open the new mailbox, go to the Delegation tab, and add users under Read and manage (Full Access), Send as, and Send on behalf as needed.

If you prefer PowerShell — handy when you’re creating several mailboxes or scripting onboarding — the cmdlets are straightforward:

# Connect first (ExchangeOnlineManagement module)
Connect-ExchangeOnline

# Create the shared mailbox
New-Mailbox -Shared -Name "Support" -DisplayName "Support Team" -Alias support `
  -PrimarySmtpAddress [email protected]

# Grant Full Access (auto-mapping on by default)
Add-MailboxPermission -Identity [email protected] `
  -User [email protected] -AccessRights FullAccess -InheritanceType All

# Grant Send As
Add-RecipientPermission -Identity [email protected] `
  -Trustee [email protected] -AccessRights SendAs -Confirm:$false

Understanding the three permission types

This is where most shared mailbox problems start. The three permissions do different things, and granting the wrong one is why users complain that they “can see the mailbox but can’t send from it.”

Shared mailbox permissions, plain English

Full Access (Read and manage) Open the mailbox, read, move, and delete items. Does NOT let you send as the mailbox by itself.
Send As Send mail that looks like it came directly from the shared address. The recipient sees only the shared mailbox.
Send on Behalf Send mail shown as 'You on behalf of Support Team'. The recipient sees who actually sent it.

For a typical support or info mailbox, grant Full Access + Send As. That lets the team open the mailbox and reply so the message comes from the shared address cleanly. Use Send on Behalf only when you specifically want recipients to see which individual responded.

Outlook auto-mapping: when the mailbox shows up on its own

When you grant Full Access through the standard method, Exchange Online turns on auto-mapping. Outlook then adds the shared mailbox automatically the next time it connects, with no manual setup. The mailbox appears in the folder list under the user’s own mailbox.

A few realities to know:

  • Auto-mapping isn’t instant. It can take anywhere from a few minutes to an hour, and the user often has to restart Outlook before it appears.
  • It only works for Full Access. Send As and Send on Behalf don’t add the mailbox to Outlook — they only affect sending.
  • If you grant Full Access with auto-mapping turned off, the user has to add the mailbox manually under File → Account Settings → Change → More Settings → Advanced → Add.

To turn auto-mapping off deliberately (useful for very large mailboxes that slow Outlook down):

Add-MailboxPermission -Identity [email protected] `
  -User [email protected] -AccessRights FullAccess `
  -InheritanceType All -AutoMapping:$false

The license question: when is a shared mailbox free?

This is the detail that saves money and the one people most often get wrong. A shared mailbox does not need its own Microsoft 365 license for normal use, up to 50 GB of storage. Below that limit, you create it, grant access to licensed users, and pay nothing extra for the mailbox itself.

You need to assign a license to the shared mailbox when:

  • It grows beyond 50 GB. At that point Exchange Online requires a license to keep delivering mail to it.
  • You want to enable an online archive for the shared mailbox.
  • You apply litigation hold or certain retention features that depend on a license.

Shared mailbox licensing at a glance

Storage under 50 GB No license needed for the mailbox
Storage over 50 GB License required (e.g. an Exchange Online plan)
Enable archive mailbox License required
Litigation hold / some retention License required
Users who open the mailbox Each needs their own licensed account regardless

Quick verification

After you create the mailbox and set permissions, confirm it actually works before you tell the team it’s ready:

  1. Have one member open Outlook and confirm the mailbox appears (or add it manually).
  2. Send a test message to the shared address from an outside account and confirm it lands.
  3. Reply from the shared mailbox, picking the shared address in From, and confirm the recipient sees the shared address (not the individual’s).
  4. Check the Sent Items — replies sent with Send As are stored in the shared mailbox’s Sent Items so the whole team can see the history.

If users hit repeated sign-in prompts when the mailbox is added, that’s usually an Outlook credential issue rather than a permissions problem — our guide on fixing Outlook’s endless password prompt walks through the cached-credential and modern-auth fixes. And if mail isn’t arriving at the shared address at all, work through Microsoft 365 email not sending or receiving to check mail flow and DNS.

Wrapping up

Creating a shared mailbox is quick; getting the permissions and licensing right is what makes it work day to day. Create it in the admin center for speed or the Exchange admin center for control, grant Full Access + Send As for a normal team mailbox, and lean on auto-mapping so Outlook picks it up without manual setup. Keep it under 50 GB and it stays license-free — just remember every person who opens it still needs their own licensed account.

If you’re standing up several team addresses at once, the PowerShell approach pays off fast, and it gives you a repeatable script you can reuse during onboarding.

Frequently asked questions

Does a shared mailbox need its own Microsoft 365 license?

Not for normal use. A shared mailbox works without a license up to 50 GB of storage. You need a license once the mailbox exceeds 50 GB, if you want to enable an archive, or if you apply litigation hold or some retention features. The users who access it still need their own licensed accounts.

What's the difference between Full Access, Send As, and Send on Behalf?

Full Access lets someone open the mailbox and read, manage, and delete items, but it does not let them send mail as the mailbox on its own. Send As lets a user send mail so it looks like it came directly from the shared mailbox. Send on Behalf shows the recipient that a specific person sent on behalf of the mailbox. Most teams grant Full Access plus Send As.

Why doesn't the shared mailbox appear automatically in Outlook?

Outlook auto-mapping adds a mailbox automatically only when you have Full Access granted through the standard method and the account uses autodiscover. Auto-mapping can take time to appear, and it is skipped if Full Access was granted with auto-mapping turned off. Restarting Outlook or re-adding the mailbox manually usually fixes it.

Can users reply from the shared mailbox so the reply keeps the shared address?

Yes, but only if they have Send As (or Send on Behalf) permission and they pick the shared address in the From field. Without Send As, the reply goes out from the user's own address even though they opened the message in the shared mailbox.

How long does it take for shared mailbox permissions to apply?

Permission changes in Exchange Online are not always instant. They usually apply within a few minutes but can take up to an hour to fully propagate, and Outlook may need a restart before auto-mapping shows the mailbox. The web version (OWA) often reflects changes faster than the desktop client.

Can I convert a regular user mailbox into a shared mailbox?

Yes. In the Exchange admin center you can convert a user mailbox to a shared mailbox, which lets you reclaim the license. Convert only after the person has left or no longer needs to sign in directly, and confirm the mailbox is under 50 GB so it stays license-free.

Sources & further reading

Official vendor documentation referenced while writing this guide.

MG

MCSA Guru Team

IT & Systems Administration

We are working IT pros and system administrators who spend our days in Windows Server, Microsoft 365, and the wider Microsoft stack. MCSA Guru is where we write down the fixes and walkthroughs we wish we had found the first time.

MCSA Guru provides independent, educational IT guidance. Microsoft, Windows, Windows Server, Microsoft 365, Exchange, and Microsoft Teams are trademarks of Microsoft Corporation; Docker is a trademark of Docker, Inc. MCSA Guru is not affiliated with or endorsed by Microsoft or Docker. Always test changes in a safe environment before applying them in production.

Related guides

Fixing something right now?

Jump straight into the guide library or search for the exact error or task you are dealing with.