Hi Medyman,
I tried this and it's still not working. When I did the email test yesterday I did get an email that said "testing server mail support".
This is what I still have on my html page (www.mysite.htm):
And on the page called formsender1.php:Code:<form name="form1" action="formSender1.php" method="post">
<label for="firstname">First Name :</label>
<input name="firstname" type="text" />
<br />
<label for="lastname">Last Name :</label>
<input name="lastname" type="text" />
<br />
<label for="address">Address :</label>
<input name="address" type="text" />
<br />
<label for="phonehome">Phone (home) :</label>
<input name="phonehome" type="text" />
<br />
<label for="phonecell">Phone (cell) :</label>
<input name=phonecell" type="text" />
<br />
<label for="emailaddress">Email Address :</label>
<input name="emailaddress" type="text" />
<br />
<input type="reset" />
<input type="submit" />
</form>
Did I miss something obvious?Code:<?php
$firstname = $_POST['firstname'];
$lastname = $_POST['lastname'];
$address = $_POST['address'];
$phonehome = $_POST['phonehome'];
$phonecell = $_POST['phonecell'];
$emailaddress = $_POST['emailaddress'];
$to = "whatever@yahoo.com";
$subject = "Grill Form";
$body = "First name: ".$firstname."<br>";
$body .= "Last name: ".$lastname."<br>";
$body .= "Address: ".$address."<br>";
$body .= "Home Phone: ".$phonehome."<br>";
$body .= "Home (cell): ".$phonecell."<br>";
$body .= "Email Address: ".$emailaddress."<br>";
$from = $emailaddress;
echo "To: ".$to;
echo "<br>Subject: ".$subject;
echo "<br><br>Message:<br> ".$body;
echo "<br><br>From: ".$from;
?>

