Hi All!
I am still having problems with this email form!
The client is not receiving the emails on their end - could anyone help and let me know if there is something wrong with my coding or if it is on the servers end?
Thanks all so much!!
The code is below :
</font></font></font></font></font></font></font></font></font></p>
<p><font size="2" face="Century Gothic"> </font></p>
<font face="Verdana, Arial, Helvetica, sans-serif">
<?php
$title = "Contact VAGABOND";
$page = "front";
if (isset($submit)) {
// send the email
$body = "This is feedback from the VAGABOND website. Some fields may be blank. This indicates they were not filled in.\n\n";
while (list($k,$v) = each($HTTP_POST_VARS)) {
$body .= "$k: $v\n";
}
// rest of the message
$to = "info@vagabond.com.au";
$subject = "Vagabond website feedback";
mail($to, $subject,$body, "From: $email");
?>
</font><br>
<?php
}
?>
</body>
</html>