yes you can, but if you are sending the same information, you could probably do a loop through your initial mailer or you can copy the additional users
Former
LatterPHP Code:$people = array('email','email','email');
foreach($people as $to)
{
mail($to, $subject, $body, $headers);
}
in either case, be sure to validate the information coming from the user... aka DONT TRUST IT!PHP Code:$to = 'email';
$cc = array('email','email','email'); can be just a single string too
// if $cc is an array
$headers = "CC: ".implode(',', $cc);
if $cc is a string
$headers = "CC: ". $cc;
mail($to, $subject, $body, $headers);

