Page 1 of 1

LUA - send email to multi recipients[solved]

Posted: Tuesday 10 May 2016 21:00
by Flopp
How can I send email to multi recipients?

If I use this code, second email(bbbb) will be as CC

Code: Select all

commandArray['SendEmail']='Subject# #[email protected];[email protected]'
if i use this code, only bbbb will get the email not aaaa

Code: Select all

commandArray['SendEmail']='Subject# #[email protected]'
commandArray['SendEmail']='Subject# #[email protected]'
do I have to use some kind of delay between aaaa and bbbb?

Re: LUA - send email to multi recipients

Posted: Tuesday 10 May 2016 21:06
by jvdz
Think this should work:

Code: Select all

commandArray[1]={['SendEmail']='Subject# #[email protected]'}
commandArray[2]={['SendEmail']='Subject# #[email protected]'}
Jos

Re: LUA - send email to multi recipients[solved]

Posted: Tuesday 10 May 2016 21:43
by Flopp
jvdz wrote:Think this should work:

Code: Select all

commandArray[1]={['SendEmail']='Subject# #[email protected]'}
commandArray[2]={['SendEmail']='Subject# #[email protected]'}
Jos
Thanks it worked perfect :D