steve
Sat May 14 06:25:51 CDT 2005
On Fri, 13 May 2005 15:06:40 -0400, Lew wrote:
> Can anyone point me to some examples for using blatt with VFP? Also a
> recommendation or two for a reasonable priced 3rd party smtp/pop3
> library would be appreciated.
> Thanks.
> -Lew
Try:
http://www.tedroche.com/Present/2002/emailwooutlook.html
LOCAL lcMessage as String, ;
liResult as Integer && integer result code
DECLARE Integer Send IN BLAT.DLL string cMessage
lcMessage = "Message.txt -t tedroche@tedroche.com"
liResult = Send(lcMessage)
? liResult
HTH
Steve