I have the following code which tells when new message has arrived!
Private Sub Application_NewMail()
MsgBox "New Mail Has Arrived"
End Sub
How do I read the body,subject of this mail? Are there any good tutorials for outlook programming?
I found msdn tutorial which was useful but was general overview.
You’ll need something like this:
Paste the code into ThisOutlookSession and restart Outlook. When a message enters your default local Inbox you’ll see the popup with subject and body.