I tried out the email.php tutorial, and thought i had it all figured out, but when i hit my submit button, nothing gets sent to the email address…??
here’s the php code:
[INDENT]<?php
$sendTo = “(email address)”;
$subject = “Party booking request”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$headers .= "Phone: " . $_POST[“phone”];
$headers .= "Address: " . $_POST[“address”];
$headers .= "Requested Date: " . $_POST[“date”];
$headers .= "Approx. # of Guests: ". $_POST[“guests”];
mail($sendTo, $subject, $headers);
?>
[/INDENT]I don’t know what’s up as I’m a total rookie to most everything Flash/AS/PHP…
Somebody please help me out?!?