PHP Email: To, CC

886 Views Asked by At

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!

4

There are 4 best solutions below

0
On

You forgot your newline.

$headers .= "\r\nCc: ".$email_cc;
0
On

Try ending your header entries with "\r\n":

$headers .= 'From: <[email protected]>' . "\r\n";
$headers .= 'Cc: [email protected]' . "\r\n";
0
On

Have you tried with "Cc" and not "CC" ? And do not forget the "\n" at the end.

0
On

Don't use PHPs mail() function directly. Use a wrapper class such as SwiftMailer or PHPMailer. They give you far more flexibility and are safer.