Take a look at http://www.php.net/manual/en/function.mail.php#AEN39855 for
ways of doing complex mails.. You can indeed do CC's and BCC's you just add
them in the header area.  Study the example, it works beautifully and will
do everything you stated.

Plus there are classes out there that will allow you to do everything you
could possibly ever want to do with email.. So take a look on google if you
want to get into multi part messages, attachments, html, etc etc.

Cheers!

Rick

Don't dismiss a good idea simply because you don't like the source. -
Unknown


> From: Stuart Dallas <[EMAIL PROTECTED]>
> Organization: SharedServer.net
> Reply-To: Stuart Dallas <[EMAIL PROTECTED]>
> Date: Fri, 14 Jun 2002 22:14:35 +0100
> To: [EMAIL PROTECTED], [EMAIL PROTECTED]
> Subject: Re: [PHP] 'CC' and 'BCC' in mail function
> 
> On Friday, June 14, 2002 at 10:01:24 PM, Sridhar Moparthy wrote:
>> Does any one know how to make mail() function to send mail to 'CC' and 'BCC'
>> address. I have tried to keep 'CC' and BCC' in header, but it is not
>> working. Mail function is sending the message to 'To' address but not to
>> 'CC' and 'BCC'.
> <snip
>>         if (mail($to,$subject,$message,$header))
> <snip>
> 
> The mail function sends the message to the addresses in the first parameter,
> so
> you need to specify all the users you want the message to go to in $to.
> 
> PS. I (and I'm sure there are others) would prefer it if you could create a
> new
> thread for a new topic. It makes things a lot easier to follow.
> 
> -- 
> Stuart
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to