BCC Working Solution
I have got the BCC working
------------------------------
Open up theme-emails.php
Go to the code where it says:
Code:
// $headers .= "Cc: $Cc \r\n";
// $headers .= "BCC: $Bcc \r\n";
Next - Uncomments the line
// $headers .= "BCC: $Bcc \r\n"; and delete the
\r\n bit
So your left with:
Code:
// $headers .= "Cc: $Cc \r\n";
$headers .= "BCC: $Bcc";
Nearly done but we have to do a bit more.
Scroll back up the code a bit to find:
Code:
// $Cc = 'youremailaddress@domain.com';
// $Bcc = get_option('admin_email');
Now uncomment out the
// $Bcc = get_option('admin_email'); and insert your email address in here
Your code should look like this:
Code:
// $Cc = 'youremailaddress@domain.com';
$Bcc = 'replaceyouremail@email.com';
Replace 'replaceyouremail@email.com' with the email you want to BCC
Any questions please ask, also Mods and David can you double check to see if this code is ok, no other issues you can see?
Thanks
Chris