I try to use this function to send mail (I have to use local outlook mail)
Code: Select all
function DirectMessage()
local oMail
DEFINE MAIL oMail ;
SUBJECT "FiveWin Mail-control power" ;
TEXT "This is real xBase power at your fingertips!" ;
TO "abc@abc.com.tr"
ACTIVATE MAIL oMail
MsgInfo( oMail:nRetCode )
return nil
I have try
Code: Select all
TO "abc@abc.com.tr","ddd@abc.com.tr"
Can you help me?