Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Email interface
Message
From
13/12/2001 15:53:02
Dave Macfarlane
Condo Navigator Ltd.
Alberta, Canada
 
 
To
13/12/2001 12:09:14
Elyse Pomerantz
Dynamic Data Concepts, Inc.
Brooklyn, New York, United States
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Miscellaneous
Thread ID:
00593904
Message ID:
00594072
Views:
35
David Frankenbach has a website at: http://www.geocities.com/ResearchTriangle/9834/mainfram.htm

Check out page SAMPLES and download the SpyIn.zip it contains a great classlib that allows you to start Outlook Express or even Lotus Notes email and automatically insert Receipient, Subject, CC, BCC, Message

Very easy to use (you'll have it working in minutes), sample code:

* ------------------------------------------------------------------
PROC EmailTo

lparameters pcRecipient, pcSubject, pcBody, pcCC, pcBCC

* more code here to ensure parameters are character type

set classlib to dfwinapi additive

oShell = createobject( "ShellExecute" )
with oShell
.mcDocApp = "mailto:" + lcRecipient + lcSubject + lcCC + lcBCC + lcBody
lnRetVal = .Execute()
endwith
* ------------------------------------------------------------------
Previous
Reply
Map
View

Click here to load this message in the networking platform