I am working yet again with the _NewMailEx
event of Outlook and am starting to get paranoid.
This document states:
This event fires once for every received item that is processed by Microsoft Outlook. The item can be one of several different item types, for example, MailItem , MeetingItem , or SharingItem. The EntryIDsCollection string contains the Entry ID that corresponds to that item. Note that this behavior has changed from earlier versions of the event when the EntryIDCollection contained a list of comma-delimited Entry IDs of all the items received in the Inbox since the last time the event was fired. [...]
I am using Office 2010 at work and Office 2016 and 2019 at home and have never had any issues with expecting one event per mail.
This Office 2003 document led me to believe that the change to the _NewMailEx
event happened with Office 2007.
However this and this question explicitly state using Office 2010 and in both questions the OP Split
s the string. There are also many other Outlook questions without an explicit version statement that Split
the EntryIDCollection
. See this question for example.
Am I wrong in my assumption?
Up to which Office version is the EntryIDCollection
of the _NewMailEx
event a comma-delimited string?