Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Using Hyperlink class for mailto:
Message
De
23/03/2005 12:55:29
Sabari Kreesh
Future Technologies
Mumbai, Inde
 
 
À
23/03/2005 09:50:26
Information générale
Forum:
Visual FoxPro
Catégorie:
Applications Internet
Divers
Thread ID:
00998405
Message ID:
00998532
Vues:
12
Use this Procedure given below & Pass the parameter
your comments are welcome (sabari@writme.com)

Example :

OpenEmailClient('sabari@writeme.com','','My First E-Mail','Just a Test')


PROCEDURE OpenEmailClient
LPARAMETERS lcEmailAddress, lcCCAddress, lcSubject, lcMessageBody
DECLARE INTEGER ShellExecute ;
IN SHELL32.DLL ;
INTEGER nWinHandle,;
STRING cOperation,;
STRING cFileName,;
STRING cParameters,;
STRING cDirectory,;
INTEGER nShowWindow

ShellExecute(0, "", "mailto:" + lcEmailAddress + "?Subject=" + lcSubject + ;
"&CC=" + lcCCAddress + "&body=" + lcMessageBody, "", "", 1)

RELEASE DLLS ShellExecute
RETURN
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform