Hello All,
I want to know about sending email in php to multi-users via BCC.
I usually use the following function I wrote:
function sendemail($thebody,$email,$subject,$siteemail)
{
$extra_headers = "From: $siteemail\nReply-To: $siteemail\n";
mail($email,$subject,$thebody,$extra_headers);
}
Can you tell me what to add? I thought it would be simple like:
\nBCC: $bccemails
but if so, where does this go.
ALSO, I am sending to our users which is currently 10,000 an growing. Is there a limit as to # of emails in a BCC?
Thanks!
Jay