An Office service that supports add-ins to interact with objects in Office client applications.
Hello Andjela Mijailovic
Thank you for your question on Q&A Forum regarding multi-selection support in Outlook Web Add-ins using the Unified Manifest in the New Outlook and Outlook on the Web.
Based on my research, currently, multi-selection is not supported for Outlook Web Add-ins that use the Unified Manifest in the New Outlook or Outlook on the Web.
Please refer to the official Microsoft documentation here: Activate your Outlook add-in on multiple messages
As a workaround, Microsoft recommends deploying the Outlook add-in using the traditional XML manifest (also known as the “add-in only manifest”) and setting the
<SupportsMultiSelect>true</SupportsMultiSelect> flag. This approach enables multi-selection support across all platforms, even while continuing to use the Unified Manifest for other Office or Teams apps if needed.
You can find the relevant section in the same article linked above: https://learn.microsoft.com/en-us/office/dev/add-ins/outlook/item-multi-select?tabs=xmlmanifest#configure-the-manifest
<Action xsi:type="ShowTaskpane">
<SourceLocation resid="Taskpane.Url"/>
<SupportsPinning>true</SupportsPinning>
<SupportsNoItemContext>true</SupportsNoItemContext>
<!-- Enables your add-in to activate on multiple selected messages. -->
<SupportsMultiSelect>true</SupportsMultiSelect>
</Action>
Unfortunately, there is currently no specific timeline announced for when full support for multi-select with the Unified Manifest will be available in the New Outlook or Outlook on the Web. However, the issue has been acknowledged and is currently listed as “in backlog” on GitHub. For your reference, here’s one of the related GitHub threads: Not able to open web add-in after selecting multiple emails in New Outlook #3441
Hope this information is helpful.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.