Hi, I’m new here… I’ve followed the instruction of creating the mail form based on this: http://www.kirupa.com/developer/actionscript/flash_php_email.htm
And everything works fine! I could received email but the current form i’m doing have 2 email fields. One is the “Email” another is “Parent Email”, right now i’m only receiving email address from the first field. How is it possible for me to receive emails from this 2 fields?
Here’s my script (php):
$headers = “From: " . $_POST[“name”] . “<” . $_POST[“email”] .”>
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-path: " . $_POST[“email”];