I have created a form in flash 4 that uses php to send the filled in information to my e-mail account. The code I am using in php is:
<?php
mail($recipient, $subject, $message,
"From:".$sender."\nReply-To:".$sender);
echo("sent=done");
?>
As is I can only send one text field called message to the $message sent by php. Is there a way that I can have multiple messages that get parsed in php before sending?