html form tag<FORM action="mailtest1.php" name="mailform" method="post" enctype="text/plain" onSubmit="return checkForm(this);">
<TEXTAREA name="message" cols="30" rows="6" class="field" wrap="VIRTUAL"></TEXTAREA>
This is calling php (no in testing format)[php]<?php
$to = "[email protected]";
$subject = “Test mail”;
$message = $_REQUEST[‘message’] ;
/* $message = “Hello! This is a simple email message from me.”;*/
$from = "[email protected]";
$headers = “From:” . $from;
/*
mail($to,$subject,$message,$headers);
echo “Mail Sent.”;
*/
$send = mail($to, $subject, $body, $headers) ;
if($send && $message != “”){
header( "Location: http://www.tristatecasinoparties.com/thankyou.htm" ) ; }
else
{ header( “Location: http://www.tristatecasinoparties.com/problem.htm” ) ; }
?> [/php]
Final file more extensive. This is cut down just to get things working