Hello,
i made a mail header to send also to "bcc" and "cc"
$header = "MIME-Version: 1.0\n";
$header .= "Content-type: text/plain; charset=ISO-8859-1\n";
$header .= "Return-Path: ".$email_return."\n";
$header .= "Date: ".$email_date."\n";
$header .= "From: $email_from <$emailwebmas>\n";
$header .= "CC: <$email_to_cc>\n";
$header .= "Bcc: <$email_to_bcc>\n";
$header .= "Reply-To: ".$emailwebmas."\n";
The problem is, that the mail is send to me, but not to the Bcc and CC persons.
i also can see in the mail header the Bcc mail adress.
i also tried it with differnet other mail scripts, but it is the same.
I have Win2000, Apache and PHP4 as modul.
Could it be the email provider ?
thanks a lot for any idea
Hans