hi,
i have been using for a while now the PHP mail function, so that users from my website can submitted commments to me, which works fine.
What im trying to do now is to use BCC or CC, is this available with this function?
my current code that works is as follows:
$to="me@somedomain.com";
$subject = "Message From Website";
$mailheaders = "From: $thereemail <> \n";
$mailheaders .= "Reply-To: $thereemail\n\n";
mail($to, $subject, $email, $mailheaders);
thanks for any advice in advance....