Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Outlook Express & Microsoft Outlook E-mail clients
Message
 
À
16/03/2004 04:23:43
Information générale
Forum:
Visual FoxPro
Catégorie:
COM/DCOM et OLE Automation
Divers
Thread ID:
00886614
Message ID:
00886826
Vues:
48
>hi all,
>
>i am working on a vfp6 application for a client of mine.
>
>i am trying to automate the process of sending e-mails through my vfp software.
>
>but, at this client's office, some users have outlook express as the email client whereas some have microsoft outlook as the e-mail client.
>
>how do i handle the above situation ? how can i figure out through my software as to which is the default email client for a given user and then proceed to use either MAPI or OLE automation.
>
>with sincere thanks.

You could try using CDO
Local ox As CDO.Message
ox=CreateObject("CDO.Message")
ox.To = "Someone@somewhere.com"
ox.From = "Me"
ox.TextBody = "Test"
ox.Send()
ox=Null
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform