A Microsoft 365 Mailbox refers to a cloud-hosted mailbox provided as part of Microsoft 365’s Exchange Online service. It enables users to send, receive, and manage emails, along with access to calendaring, contacts, and tasks. Each user with an assigned license typically gets their own mailbox, which is accessible from anywhere via Outlook, web, or mobile apps.
Microsoft 365 mailboxes are not completely free. While basic Outlook functionality may be available with a free Microsoft account (e.g., Outlook.com), Microsoft 365 Mailboxes with enterprise-grade features—such as 50GB+ storage, shared mailboxes, and compliance tools—require a paid Microsoft 365 subscription, such as Business Basic, Standard, or Office 365 E1/E3/E5 plans.
When you assign a license (that includes Exchange Online) to a user, a mailbox is automatically provisioned.
Admins can create mailboxes under Recipients > Mailboxes, including shared and resource mailboxes.
New-Mailbox -UserPrincipalName "john.doe@contoso.com" -Alias "johndoe"
For automation:
$params = @{
accountEnabled = $true
displayName = "John Doe"
mailNickname = "johndoe"
userPrincipalName = "john.doe@contoso.com"
passwordProfile = @{ forceChangePasswordNextSignIn = $true; password = "xWwvJ]6NMw+bWH-d" }
}
New-MgUser -BodyParameter $params
Note: Graph doesn't directly create a mailbox, but provisioning a user with an Exchange license triggers mailbox creation.
Key Point | Details |
Feature Name | Microsoft 365 Mailbox |
Purpose | Cloud-based email, calendaring, and collaboration |
Included In | Business Basic/Standard, Office 365 E1/E3/E5, Education A1/A3/A5 |
Free to Use? | Only with assigned license; no standalone free business mailboxes |
Access Method | office.com, Outlook apps, Admin Center, Microsoft365.com |
Integrates With | Teams, OneDrive, Outlook, Microsoft Graph, Power Automate, Viva |
Did You Know? Managing Microsoft 365 applications is even easier with automation. Try our Graph PowerShell scripts to automate tasks like generating reports, cleaning up inactive Teams, or assigning licenses efficiently.
Ready to get the most out of Microsoft 365 tools? Explore our free Microsoft 365 administration tools to simplify your administrative tasks and boost productivity.
© Your Site Name. All Rights Reserved. Design by HTML Codex