Hi there, I am needing some assistance in getting the php file for the flash form mailer to work properly. I have tried to follow the tutorial and at one point I had it working, but when I try to add extra fields for the requested information off the form I’m not getting the emails. Below is a copy of the code I’ve created
<?php
$sendTo = "kimberlea.s@gmail.com";
$subject = “Request to Join Westwood AIGA Student Group”;
$headers = “From: " . $_POST[“name”] .” “<” . $_POST[“email”] .">
";
$headers .= “<” . $_POST[“email”] . ">
";
$headers .= "Reply-To: " . $_POST[“email”] . "
";
$headers .= "Return-Path: " . $_POST[“email”];
$message = $_POST[“name”, “address”, “cityStateZip”, “phone”, “email”, “comments”];
mail($sendTo, $subject, $message, $headers);
?>
Any assistance is greatly appreciated.
~ Kimberlea