bcc php email code
I use this code to send multiple auto response emails from a php form. Ideally, I'd like to send them bcc. Any suggestions on how to write the code so that I can send it to myself as the to: and bcc: to everyone else?
formvars[$e]))
{
$receipient .= $this->formvars[$e].',';
}
}
$receipient = rtrim($receipient,",");
return true;
}
}
?>