Consider the scenario:
– Admin1 has Send on Behalf permision on User1
– Admin2 has Send As permision on User2
If the “Admin1” send message as “User1” with Send on Behalf permission, the recipient receive the message with the From field “Admin1 on behalf of User1“.
If the “Admin2” send message as “User2” with Send As permission, the recipient receive the message with the From field only “User1“, the recipient should have no idea about “Admin2“.
Grant Send on Behalf Permission
We can grant send on behalf permissions for a mailbox user using the powershell cmdlet Set-Mailbox with the parameter GrantSendOnBehalfTo.
The following command grants “Morgan” send on behalf permission to Kevin’s mailbox.
Set-Mailbox "Kevin" -GrantSendOnBehalfTo @{add="Morgan"}
Grant Send As Permission
We can grant Send As permission for a mailbox user using the Add-ADPermission powershell cmdlet. To perform this task, your account need to be added in the server roles Organization Management and Recipient Management.
The following command grants “Morgan” send as permission to Kevin’s mailbox.
Add-ADPermission -Identity "Kevin" -User "Morgan" -Extendedrights "Send As"
For “Send on behalf” scenarios;
1. Which mailbox getrs the ‘Sent Item’?
2. Where do replies go?
By default, the Sent item message will go to Delegate’s mailbox. But you can configure it to save sent items in Delegator’s mailbox. Refer to this post: https://docs.microsoft.com/en-us/exchange/recipients-in-exchange-online/manage-user-mailboxes/automatically-save-sent-items-in-delegator-s-mailbox