You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser.
-
A
Dear X10Hosting,
I'm trying to e-mail a form through the following simple "send_form_email.php" script:
<?php
$to = "ajnv60@ekijsa.x10hosting.com";
$subject = "Contact Us";
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$headers = "From: $email";
$sent =...