Catzenjaeger - 2009-05-07

i try to send my form to more than one or two recipient. Atm i have a form with 9 traveller. All travellers have thier own email field in my form. The purchaser fill our the form completly and submit the form. The confirmations email shold be send to me ($to) + the Purchaser ($busmail) and to all other travelers (busmail1, busmal2, busmail,3 ....)
but how can i make this????

I wish that all email addresses from the form to be read.

so here my variables from proccessor:

$to .= 'xxxxxx.xxxxxx@xxxxxx.de';
$busmail = $_POST['field_7'];
$busmail1 = $_POST['field_39'];
$busmail2 = $_POST['field_51'];
$busmail3 = $_POST['field_63'];
$busmail4 = $_POST['field_75'];
$busmail5 = $_POST['field_87'];
$busmail6 = $_POST['field_99'];
$busmail7 = $_POST['field_111'];
$busmail8 = $_POST['field_123']; 

here the mail:

mail($to, "Anfrage: $subject $datum $bestellernachname/$bestellervorname $anrede", $message1, $headers);
mail($busmail, $busmail1, $busmai2, $busmail3, $busmail4, $busmail5, $busmail6, $busmail7, "Request Confirmation: $subject $datum", $message2, $headers);

but is dosent work - :(
i know is not correct (no cc) but find no solution for my problem. Can anyone help me please?