SC_MAIL_SEND Question

Does anyone know why:
I have this variable for the emails to go to:
$emails_admin = ‘helpdesk@AAA.com’;‘Kevin@BBB.com’;

But only get the first addressed email.

according to the help for the macro:

List of the emails that will recieve the message, it could be a string or variable that cointains one or more emails separated by “;” or one variable that contains one array of emails.

I tried support but they were asking me if this was a send or receive problem…
Sigh

Kevin

[QUOTE=Kdriscoll;17134]
according to the help for the macro:[/QUOTE]

Try field “Copies” instead “To” for other email adresses.

I think you have an extra set of quotes.

$emails_admin = ‘helpdesk@AAA.com’;‘Kevin@BBB.com’;

Should be

$emails_admin = ‘helpdesk@AAA.com;Kevin@BBB.com’;

Your statement only assigns ‘helpdesk@AAA.com’ to $emails_admin.

If you wanted to do it as an array, it would be

$emails_admin=array( ‘helpdesk@AAA.com’,‘Kevin@BBB.com’);