[RESOLVED] mail with BCC option :(
Hi
i need some small help,
please check this code, why my BCC users are not getting email with this code?
:cry:
Re: mail with BCC option :(
Are you receiving any error messages from PHP? Are any of your recipients receiving email? Are you on a Windows server? Do you know what version of PHP you're running? Some people have commented on issues with BCC on PHP.net's mail() page (use Find and look for "bcc").
Re: mail with BCC option :(
The line:
$headers .= 'Bcc: $to' . "\r\n"
'Bcc: $to' Is not in double quotes, this means that the $to variable will not be expanded. Put it in double quotes and you should find it works fine.
Also, the Bcc and Cc headers are interpreted by PHP not the mail transfer agent; PHP simply resends the same email . This means the address must be only and address and not a name followed by an address in angle brackets.
Re: mail with BCC option :(