[RESOLVED] Determining the arrival of an email in Outlook Inbox with events
This is what I would like to accomplish:
When a new email with an already known email address arrives in the Inbox folder I would like to be able to raise an event that calls my dll to process this incoming email.
Is there a way to monitor for this incoming email without the use of continually scanning the Inbox every minute or so?
Is there an Outlook event that fires when an email arrives to the Inbox?
Thanks in advance for all and any help.
Re: Determining the arrival of an email in Outlook Inbox with events
Yes, its very easy if you do it in Outlooks VBA. :)
VB Code:
Private Sub Application_NewMail()
'Do your stuff here
End Sub
'Also, newly added event for Outlook 2003 only.
Private Sub Application_NewMailEx(ByVal EntryIDCollection As String)
'Do your stuff here
End Sub
Re: Determining the arrival of an email in Outlook Inbox with events
That is just what I need - thanks RobDog888