A
Andy Trezise
Hi
I'd like to store the handle (EntryID) of a message before it is sent so
that I can quickly retrieve it later.
Problem is the message doesn't seem to have any unique handle before it is
actually sent which is then too late as I have no way of getting back to it.
oOutlook = CREATEOBJECT("Outlook.Application")
oNewMessage = oOutlook.CreateItem(0)
oNewMessage.Recipients.Add(cEmailAddress)
oNewMessage.Recipients.ResolveAll
oNewMessage.Display <-------------------- the EntryID is blank
at this point
I'd like to store the handle (EntryID) of a message before it is sent so
that I can quickly retrieve it later.
Problem is the message doesn't seem to have any unique handle before it is
actually sent which is then too late as I have no way of getting back to it.
oOutlook = CREATEOBJECT("Outlook.Application")
oNewMessage = oOutlook.CreateItem(0)
oNewMessage.Recipients.Add(cEmailAddress)
oNewMessage.Recipients.ResolveAll
oNewMessage.Display <-------------------- the EntryID is blank
at this point