Thank you. What I meant was, is there a property of an incoming email
that could be checked to determine what mail reader someone is using?
Or is it so client-specific that there's no way? For example
Dim olApp As Outlook.Application
Dim olNS As Outlook.Namespace
Dim olInbox As Outlook.MAPIFolder
Dim Item As Outlook.MailItem
Application.ScreenUpdating = False
Set olApp = GetObject(, "outlook.application")
Set olNS = olApp.GetNamespace("MAPI")
Set olInbox = olNS.GetDefaultFolder(olFolderInbox)
For Each Item In olInbox.Items
MsgBox Item.Subject
MsgBox Item.SenderName
MsgBox Item.To
MsgBox Item.Attachments.Count
????
End sub
Thx,
JP
Usually there is but again that depends on the email program and the mail
server.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Optionshttp://
www.slovaktech.com/products.htm
Usually it's MS Outlook, but is there information in the return header
that could be checked to tell which mail reader it is?
- Show quoted text -