Dear List,
I is always a good idea to check out the manual before asking questions.
The answer to Leon's question about files is in the manual as well as the answer to 
this questions.  I hope the following links help.
File Operations:
http://www.php.net/manual/en/ref.filesystem.php
Bcc can be found in this section:
http://www.php.net/manual/en/ref.mail.php
Copying from the manual:
/* recipients */$to  = "Mary <[EMAIL PROTECTED]>" . ", " ; //note the comma$to .= 
"Kelly <[EMAIL PROTECTED]>";/* subject */$subject = "Birthday Reminders for August";/* 
message */$message = '<html><head> <title>Birthday Reminders for 
August</title></head><body><p>Here are the birthdays upcoming in August!</p><table> 
<tr>  <th>Person</th><th>Day</th><th>Month</th><th>Year</th> </tr> <tr>  
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>  
<td>Sally</td><td>17th</td><td>August</td><td>1973</td> 
</tr></table></body></html>';/* To send HTML mail, you can set the Content-type 
header. */$headers  = "MIME-Version: 1.0\r\n";$headers .= "Content-type: text/html; 
charset=iso-8859-1\r\n";/* additional headers */$headers .= "From: Birthday Reminder 
<[EMAIL PROTECTED]>\r\n";$headers .= "Cc: [EMAIL PROTECTED]\r\n";$headers 
.= "Bcc: [EMAIL PROTECTED]\r\n";/* and now mail it */mail($to, $subject, 
$message, $headers);

 
  Bogdan Stancescu <[EMAIL PROTECTED]> wrote: What do you mean? Supported in what way? (I take 
it you're referring to
the e-mail blind carbon copy feature).

Bogdan

"Deependra B. Tandukar" wrote:

> Greetings !
>
> Is Bcc supported in PHP?
>
> Looking forward to hearing from you.

-- 
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]


Mehmet Erisen
http://www.erisen.com


---------------------------------
Do You Yahoo!?
Send FREE video emails in Yahoo! Mail.

Reply via email to