Hi, @Roger Roger
When you change the primary email address of your booking mailbox, the previously scheduled invitation is usually still valid. These invitations are usually associated with the mailbox itself, rather than a specific email address. However, it is best to notify external users of this change to avoid any confusion.
In Exchange on-premises, you can use the following command in Power Shell to modify the primary email address of a mailbox.
Set-Mailbox -Identity "bm@contoso.onmicrosoft.com" -PrimarySmtpAddress "bm@contoso.com"
You can then set up the secondary email address using the following command.
Set-Mailbox -Identity "bm@contoso.com" -EmailAddresses @{add="bm@contoso.onmicrosoft.com"}
In Exchange Online, you can manage the email address in the EAC.
1.Select the mailbox you want to modify, and select "Manage email address types"
2.Select "Add email address type"
3.Enter the bm@contoso.com and check "Set as primary email address", click Save and the old email address will automatically become a secondary email address.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".