Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Using Hyperlink class for mailto:
Message
From
23/03/2005 12:55:29
Sabari Kreesh
Future Technologies
Mumbai, India
 
 
To
23/03/2005 09:50:26
General information
Forum:
Visual FoxPro
Category:
Internet applications
Miscellaneous
Thread ID:
00998405
Message ID:
00998532
Views:
13
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
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform