Sending mail more than one recepient with TMail
Posted: Wed Oct 24, 2018 10:51 am
Hi,
I try to use this function to send mail (I have to use local outlook mail)
This function is working good. But I have to send more than one recepient.
I have try
But it does not work.
Can you help me?
I try to use this function to send mail (I have to use local outlook mail)
- Code: Select all Expand view
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
This function is working good. But I have to send more than one recepient.
I have try
- Code: Select all Expand view
- TO "abc@abc.com.tr","ddd@abc.com.tr"
But it does not work.
Can you help me?