Hi Ribbit,
Code:
<?php
$to = "richardhuante@yahoo.com.com";
$subject = "Support requested by ".$_POST['name'];
$name_field = $_POST['name'];
$email_field = $_POST['email'];
$message = $_POST['message'];
$headers = 'From: '.$_POST['email'].'' . "\r\n" .
'Reply-To: '.$_POST['email'].'' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
$body = $message;
mail($to, $subject, $body, $headers );
header( 'Location: http://www.richardhuante.site90.com/contact.html' ) ; //replace with landing page.
?>
I've also tried it with my Squirrel Mail, but it still does'nt work.