I am trying to send the following mail() out:
$emailTo = "thisone@here.com";
if (mail($emailTo, $emailSubject, $emailBody, $emailHeader)) {
etc...etc...
and it works fine.
However,
$emailTo = "thisone@here.com, thisone2@here.com";
if (mail($emailTo, $emailSubject, $emailBody, $emailHeader)) {
etc...etc...
DOES work on MY server, but not on the actual launch server.
I get the error:
Warning: mail(): Bad parameters to mail() function, mail not sent.
I am running 4.3.10 and they have 4.3.11.
Any ideas? Is this a php.ini issue?
Thanks!