newtofoxpro
Programmer
Is it possible with smtp.gmail.com pure vfp code? Not interested using outlook etc.,
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
DECLARE INTEGER Send IN blat.dll STRING blatstring
* change this with your username and password:
lcCmd = '"c:\mail.txt" '+;
'-f mymailid@gmail.com '+;
'-t yourmailid@hotmail.com '+;
'-s "Have you tried Mail in VFP?" '+;
'-server smtp.gmail.com '+;
'-u username '+;
'-pw password'
lnResult = Send(lcCmd)
? lnResult