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?
Estimated time to complete this task: 5 minutes.
You need to be assigned permissions before you can perform this procedure or procedures. To see what permissions you need, see the "Public folders" entry in Sharing and collaboration permissions.
For information about keyboard shortcuts that may apply to the procedures in this topic, see Keyboard shortcuts for the Exchange admin center.
Tip
Having problems? Ask for help in the Exchange forums. Visit the forums at Exchange Online or Exchange Online Protection.
Use the Exchange admin center (EAC) to assign permissions
Sign in to Exchange admin center as an administrator.
Select public folders > public folders.
In the list view, select the public folder that requires the permissions, and then click Edit (the pencil icon).
Select delivery options, and then add the user to Send As or Send on Behalf permissions, as required.
Select 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:
Ensure Mail Enabled Public Folders are synced to Exchange Online:
Get-MailPublicFolder <MEPFName>
Example:
Get-MailPublicFolder OnPremPF
If the MEPF from On-Premises are not 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.
Use following command in EXO PowerShell to assign SendAs permission:
Add-RecipientPermission -Identity 'OnPremPF1' -Trustee "Richard" -AccessRights 'SendAs'