Forum Discussion
sent items folder when sending on behalf of someone else
What you're experiencing is the default behavior, where Sent Items are stored in the Sent Items folder of the delegated user's (User 1) mailbox. You can however change this behavior using the Set-Mailbox cmdlet (user mailbox behavior can only be controlled using powershell); the parameters to look out for are: MessageCopyForSentAsEnabled and MessageCopyForSendOnBehalfEnabled.
To ensure that the mails User 1 send as User 2 to be saved in the Sent Items folder of User 2, run:
Set-Mailbox 'User 2' -MessageCopyForSentAsEnabled: $True
are you saying that it is possible to get sent items only appearing in user2 ?
- VasilMichevDec 17, 2018MVP
The method you are referring to is client-bound and depends on the presence of the reg key. More importantly it's incompatible with the method boneyfrancis mentioned above, which is now enabled by default. If you insist on using the client-side method, make sure to disable the -MessageCopyFor* parameters.