Hello, I have completed the flash emailer tutorial and would like to add a confirmation message to be sent to the users entered email address. something like (hello, welcome to the network, etc, etc)… it would be nice to include $header (armsnetwork) and $subject (welcome to the network).
here is my php:
<?php
$sendTo = "korabolex@hotmail.com";
$subject = "Join the Network Submission";
$headers = "From: " . $_POST["name"] . "<" . $_POST["email"] .">
";
$headers .= "Reply-To: " . $_POST["email"] . "
";
$headers .= "Return-path: " . $_POST["email"];
$message = "status: " . $_POST["status"] . "
".
"website: " . $_POST["website"] . "
".
"intro: " . $_POST["intro"] . "
";
mail($sendTo, $subject, $message, $headers);
?>
i have very minimal understanding of php, and coding to be exact, so your help is greatly appreciated… thank you