Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to figure out why the bcc part of this PHP mail function is not working in the code below:

function _send_user_email($to, $subject, $message) {
$headers   = array();
$headers[] = "MIME-Version: 1.0";
$headers[] = "Content-type: text/html; charset=iso-8859-1";
$headers[] = "From: Customer Service <support@mydomain.com>";
$headers[] = "Bcc: <support@mydomain.com>";
$headers[] = "X-Mailer: PHP/".phpversion();

mail($to, $subject, $message, implode("\r\n", $headers));
}

I wouldn't think that there should be any problem specifying a bcc email address that is the same as the From address, but I'm not sure.

When I test this function, the recipient receives the message, but the BCC copy does not come through. Any idea why? Thanks.

share|improve this question
Have you tried a unique BCC address? – MrCode Nov 6 '12 at 7:32
Why are you using an array for $headers? – relentless Nov 6 '12 at 7:33
The only reason I am using an array is because it is just some code that I found somewhere. It seemed to make sense to me, so I figured why not? – DanielAttard Nov 6 '12 at 7:37

4 Answers

up vote 2 down vote accepted

Seriously, don't use the mail() function -- you're just letting yourself into a world of hurt.

If you want to do anything beyond absolutely the most basic email, I strongly recommend using a decent mail class, such as phpMailer.

It will make things much easier. No more messing around building the headers yourself, or trying to get the mime types working. Sending to multiple addresses, CC and BCC addresses becomes simple, and adding attachments goes from virtually impossible with mail() to dead simple.

Hope that helps.

share|improve this answer
thanks spudley. That's just the type of advice i was looking for. I'll start using the phpMailer. I hope it's easy to learn . . . – DanielAttard Nov 6 '12 at 7:41
@DanielAttard - yep, it is very easy to learn. :) – Spudley Nov 6 '12 at 7:42

Don't put $headers in an array. Try this:

function _send_user_email($to, $subject, $message) {
$headers .= "MIME-Version: 1.0";
$headers .= "Content-type: text/html; charset=iso-8859-1";
$headers .= "From: Customer Service <support@mydomain.com>";
$headers .= "Bcc: <support@mydomain.com>";
$headers .= "X-Mailer: PHP/".phpversion();

mail($to, $subject, $message, $headers);
}

And as mentioned by @spudley, look into phpMailer

share|improve this answer
He isn't passing the headers as an array. He is imploding it at the point of passing to mail(). The header array is perfectly acceptable (if not better). Also in your example you are missing \r\n which should be used to terminate each header. – MrCode Nov 6 '12 at 7:50

try this one in your script you have to change "" to '' and also remove <> then it will be work here i edited your script

function _send_user_email($to, $subject, $message) { 
$headers   = array();
$headers[] = "MIME-Version: 1.0";
$headers[] = "Content-type: text/html; charset=iso-8859-1";
$headers[] = "From: Customer Service <support@mydomain.com>";
$headers[] = 'Bcc: support@mydomain.com' . "\r\n";
$headers[] = "X-Mailer: PHP/".phpversion();
mail($to, $subject, $message, implode("\r\n", $headers));
}

here my mail function example

$headers .= 'MIME-Version: 1.0' . "\r\n";  
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";  
$headers .= "From: mydemo.com<$your_email>\r\n" .  
$headers .= 'Bcc: mydemo@mydemo.com' . "\r\n";
"X-Mailer: PHP/" . phpversion(); 
mail($to, $subject, $message, $headers);

Now If You Want To Use Html In Message

$headers .= 'MIME-Version: 1.0' . "\r\n";  
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";  
"X-Mailer: PHP/" . phpversion(); 

For Exampe Message
$message .='<table><tr><td></td></tr></table>';
share|improve this answer

it working fine, i have tested the script found that email drop in Junk box.

try to add name of email holder :

"Bcc: Support <support@mydomain.com>";
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.