Hello,
I configured email forwarding with EMS using the following code:
Set-Mailbox -Identity user1 -DeliverToMailboxAndForward $true -ForwardingSmtpAddress user2@domain.com
Ran the following code to make sure that forwarding was working:
Get-Mailbox -Identity | fl forwardingSMTPAddress,DeliverToMailboxForward
ForwardingSmtpAddress :smtp:user2@domain.com
DeliverToMailboxAndForward :True
Human resources then requested to forward user1 email to user3 as well; I ran the same code however when I ran the code to make sure that forwarding was working I am getting the following result:
Get-Mailbox -Identity | fl forwardingSMTPAddress,DeliverToMailboxForward
ForwardingSmtpAddress :smtp:user3@domain.com
DeliverToMailboxAndForward :True
I was expecting the code above to show user2 and user3 in the code above since I am forwarding user1 email to user2 and user3; also If I go to EAC "Mail Flow" forwarding is not showing a check mark in forwarding.
Is it possible to forward email to two users at the same time?
Why does exchange management shell is only showing user3 and not user2 as mail been forwarded from user1?
Whey does EAC is not showing forwarding enabled?
Thank you.