I have created a flash form with 3 input text boxes with variable names “name”, “email” and “content”.
I’d like to have the information sent to an email address when the user clicks the submit button. So far nothing seems to working.
Here is the PHP code I have used:
<?php
$sendTo = "myname@mysite.com";
$subject = “Response from My Site”;
$headers = "From: " . $_POST[“name”];
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“content”];
mail($sendTo, $subject, $message, $headers);
?>