hi
the following code opens an outlook mailitem. but what happens, if the user doesn't have outlook installed on his machine??
is there a way to detect the users default mailclient and open a mailitem of this mailclient (i.e. netscape,..)?
best regards
Dim pApp As Outlook.Application
Dim pMail As Outlook.MailItem
pApp = CreateObject("Outlook.Application")
pMail = pApp.CreateItem(Outlook.OlItemType.olMailItem)
pMail.Display()
the following code opens an outlook mailitem. but what happens, if the user doesn't have outlook installed on his machine??
is there a way to detect the users default mailclient and open a mailitem of this mailclient (i.e. netscape,..)?
best regards
Dim pApp As Outlook.Application
Dim pMail As Outlook.MailItem
pApp = CreateObject("Outlook.Application")
pMail = pApp.CreateItem(Outlook.OlItemType.olMailItem)
pMail.Display()