At 18:02 Uhr -0700 10.07.2001, Marcus James Christian wrote:
>Hello,
>
>How do I change the value of the  "TO:"  in a mail() function to a value
>of Bcc: ?
>
>Or at least trick the mail to a Bcc:    So the recipients emails aren't
>shown?

Hi Marcus,

$headers="Bcc:[EMAIL PROTECTED]\n";
$headers.="Subject: Your Subject\n";
$msg="The Message";

mail("[EMAIL PROTECTED]","Subject, will be overwritten...",$msg,$headers);

BTW, You could have found that in the manual...

best,

Sebastian

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to