finding by message ID

  • Thread starter Thread starter Katwomanofsteele
  • Start date Start date
K

Katwomanofsteele

I would like to remove duplicates in an inbox by message ID. Is this
possible? If so, what is message ID property in VBA?

Thanks :)
 
..EntryID is a guaranteed unique property but what you'd need to use is
PR_INTERNET_MESSAGE_ID (0x1035001E), a MAPI property that identifies all
messages that come in over the Internet. You can access that property using
CDO 1.21, Extended MAPI or Redemption. For a look at some CDO code samples
see www.cdolive.com/cdo5.htm.
 
Ken said:
.EntryID is a guaranteed unique property but what you'd need to use is
PR_INTERNET_MESSAGE_ID (0x1035001E), a MAPI property that identifies
all messages that come in over the Internet.

Note that with Exchange 2000 and 2003 the message ID is also populated if
the message is internal.

--
Cheers,

Siegfried Weber

If you want a smart answer, ask a smart question
http://catb.org/~esr/faqs/smart-questions.html

Why tables are bad: http://www.hotdesign.com/seybold/,
http://webdesign.about.com/cs/tables/a/aa020800b.htm

Note: Please do not send any e-mail to my old address
(e-mail address removed) because I am no longer connected with this
organization.
 
Back
Top