Forum Discussion
Daleos
Jan 25, 2023Brass Contributor
Calendar to send invites from a generic email address
I've basically set up a shared mailbox called meetings@... The intention is to use its calandar to book meetings for various groups in our club membership and to have one central area where a tea...
- Jan 25, 2023Open the shared mailbox calendar in your Outlook, create the meeting invite therein (disregard the address shown in From). Assuming you have the necessary permissions, the invite will be created on behalf of the shared mailbox.
If you have Full access permissions on the mailbox, configure it as additional account in Outlook, which will expose the full functionality, including being able to select its address in the From dropdown.
And a workaround - create the invite as ICS file, attach it to a regular message you can Send As.
VasilMichev
Jan 25, 2023MVP
Open the shared mailbox calendar in your Outlook, create the meeting invite therein (disregard the address shown in From). Assuming you have the necessary permissions, the invite will be created on behalf of the shared mailbox.
If you have Full access permissions on the mailbox, configure it as additional account in Outlook, which will expose the full functionality, including being able to select its address in the From dropdown.
And a workaround - create the invite as ICS file, attach it to a regular message you can Send As.
If you have Full access permissions on the mailbox, configure it as additional account in Outlook, which will expose the full functionality, including being able to select its address in the From dropdown.
And a workaround - create the invite as ICS file, attach it to a regular message you can Send As.
Daleos
Feb 12, 2023Brass Contributor
Thanks Vasil. It ended up being more complicated than your suggestion but your bit about "Disregard the address shown in From" helped me a lot in working out what to do.
It seems if the meetings@ has been automapped to the user, the functionality does not work.
You need to add the delegate manually to Outlook and not rely on M365s automapping feature to add the user. Fixing involved removing the user as a delegate and re-adding them using PowerShell eg
Add-MailboxPermission -Identity "meetings" -User "James T Kirk" -AccessRights FullAccess -AutoMapping $false
then go into Outlook and add meetings to Outlook via going through it's account settings to the
advanced Exchange settings and add meetings@ there.
It's an awkward workaround and I still have to see if this method works with our Mac users.
It seems if the meetings@ has been automapped to the user, the functionality does not work.
You need to add the delegate manually to Outlook and not rely on M365s automapping feature to add the user. Fixing involved removing the user as a delegate and re-adding them using PowerShell eg
Add-MailboxPermission -Identity "meetings" -User "James T Kirk" -AccessRights FullAccess -AutoMapping $false
then go into Outlook and add meetings to Outlook via going through it's account settings to the
advanced Exchange settings and add meetings@ there.
It's an awkward workaround and I still have to see if this method works with our Mac users.