I have a PHP script that automatically send outs an email. I have it working great, but when I try to add a CC, it doesn't work. Below is my code for the email to:
$email_to = "$theData2"; // Who the email is to
$headers = "From: ".$email_from;
$ok = @mail($email_to, $email_subject, $email_message, $headers);
I have tried the following to get CC to work, but I haven't had any luck.
$email_cc = "[email protected]";
$headers .= "CC: ".$email_cc;
and also have tried this:
$headers .= "CC: [email protected]";
I can't get it to email to both the: to & cc.
Any help would be greatly appreciated. Thanks!
You forgot your newline.