Assign "Send As" or "Send on Behalf" permissions for mail-enabled public folders in Exchange Online

You can assign either "Send As" or "Send on Behalf" permissions for mail-enabled public folders to users in Microsoft Exchange Online.

What do you need to know before you begin?

Use the Exchange admin center (EAC) to assign permissions

  1. Sign in to Exchange admin center as an administrator.

  2. Select Public folders > Public folders.

  3. In the list view, select the public folder that requires the permissions.

  4. In the details pane, under Delegation, click Edit.

  5. Click Add members and select the user from the list to grant send on behalf permission.

  6. Click Save.

Use Exchange Online PowerShell to assign permissions

The following example assigns "Send on Behalf" permissions for the mail-enabled public folder NewPF1 to the user Jason.

Set-MailPublicFolder -Identity '\\NewPF1' -GrantSendOnBehalfTo "Jason"

The following example assigns "Send As" permissions for the mail-enabled public folder NewPF1 to the user Jason.

Add-RecipientPermission -Identity 'NewPF1' -Trustee "Jason" -AccessRights 'SendAs'

For detailed syntax and parameter information, see the following articles:

Send As mail enabled public folder in Hybrid scenario

For Exchange Online mailboxes accessing public folders deployed at On-Premises:

  1. Ensure Mail Enabled Public Folders are synced to Exchange Online:

    Get-MailPublicFolder <MEPFName>
    

    Example:

    Get-MailPublicFolder OnPremPF
    

    If the MEPF from On-Premises aren't showing in EXO, use the Sync-MailPublicFolders.ps1 (for Exchange Server 2010) or Sync-ModernMailPublicFolders.ps1 (For Exchange 2013/2016/2019) to sync the MEPF's first.

  2. Use following command in EXO PowerShell to assign SendAs permission:

    Add-RecipientPermission -Identity 'OnPremPF1' -Trustee "Richard" -AccessRights 'SendAs'