E
epjames
How can I get the information of the email in the Inbox
folde? e.g. get the sender name, sender email address,
sent date, the content of the email, the attachments if
any.
How do I know the INDEX of the latest email at the Inbox?
set myApp = outlook.application
set myNameSpace = myApp.GetNamespace("MAPI")
set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
set myItem = myFolder.Items(INDEX)
THANKS IN ADVANCE!
epjames
folde? e.g. get the sender name, sender email address,
sent date, the content of the email, the attachments if
any.
How do I know the INDEX of the latest email at the Inbox?
set myApp = outlook.application
set myNameSpace = myApp.GetNamespace("MAPI")
set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
set myItem = myFolder.Items(INDEX)
THANKS IN ADVANCE!
epjames