outlook program add-ins

  • Thread starter Thread starter the.one
  • Start date Start date
T

the.one

how can i program Add-in using vb.net to detect the sender email address
for only new messages received not for all message in the inbox folder .
 
Use the Inbox.Items.ItemAdd event or the NewMailEx event to get the new
items as they come in and check the item.SenderEmailAddress property if you
are using Outlook 2003 or later. See www.outlookcode.com for various samples
of handling those events.
 
Back
Top