I would truly be thankful for any assistance!
(pixiexxx)
______________
<?php
$sendTo = "email@address.com";
$subject = "website form reply";
$headers = "From: " . $_POST["firstName"] ." ". $_POST["lastname"] . "<" . $_POST["email"] .">\r\n";
// next include a replyto
$headers .= "Reply-To: " . $_POST["email"] . "\r\n";
$headers .= "Return-path: " . $_POST["email"];
$message = $_POST["message"];
$message="An online application has been received from $name
The applicants e-mail address was: $email
State: $state
City: $city
Session date requested: $requestdate
Age: $age
Phone Number: $phone
Occupation: $occupation
The applicant agreed to terms: $terms";
mail($sendTo, $subject, $message, $headers);
?>