Reputation: 15850
I have an InternetMessageID for an email item. I'd like to open a Reply email dialog to an email with this InternetMessageID. How can I find the email from Outlook API by InternetMessageID?
Upvotes: 1
Views: 653
Reputation: 66215
Internet message id as in "Message-ID
" MIME header? Use Items.Find/FindNext
or Items.Restrict
to search for the PR_INTERNET_MESSAGE_I
D (DASL name http://schemas.microsoft.com/mapi/proptag/0x1035001F
) property.
Upvotes: 1