from my current form processor:

PHP Code:
//Format Email
$email    username@domain.com;
$subject  "Contact Form";
$headers  "From: $vis_email\r\n";
$headers .= "Content-type: text/html\r\n";
//Send Email
mail($email,$subject,$message,$headers); 
If I have a form which has a list menu of departments - can I program in the form processor to mail the form to a particular recipient and not all?
Can anyone talk me through the concept of what I need to do with programming?

Thanks in advance!