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.
Daleos
Jan 25, 2023Brass Contributor
Just to add, I've added delegate permsisions to the calendar.
PS C:\WINDOWS\system32> Get-MailboxFolderPermission meetings:\calendar
FolderName User AccessRights SharingPermissionFlags
---------- ---- ------------ ----------------------
Calendar Default {AvailabilityOnly}
Calendar Anonymous {None}
Calendar Daleos {Editor} Delegate
The 'organiser' always comes up as 'Daleos'
Also to note, I don't get the option to change the 'From' in the Outlook application celendar invite (it does give me the option to Send As from meetings@ with emails).
Swapping to meetings@ in the web version of Outlook does allow me to create the meeting but the organiser is still me, not meetings@.
- VasilMichevJan 25, 2023MVPOpen 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.- DaleosFeb 12, 2023Brass ContributorThanks 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.