Hi
not receiving fields or info
I'm using php script
www.serenitymovingservices.com
free quote form
thanks!
Here is the script
<HTML>
<HEAD>
<TITLE>Serenity Moving Services</TITLE>
</HEAD>
<BODY>
<H2>We Look Forward To Servicing You!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "order@serenitymovingservices.com";
$mailsubj = "Free Quote Request";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact-serenity-moving-thank-you.html">
?>
</BODY>
</HTML>
not receiving fields or info
I'm using php script
www.serenitymovingservices.com
free quote form
thanks!
Here is the script
<HTML>
<HEAD>
<TITLE>Serenity Moving Services</TITLE>
</HEAD>
<BODY>
<H2>We Look Forward To Servicing You!</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "order@serenitymovingservices.com";
$mailsubj = "Free Quote Request";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form:\n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
</SCRIPT>
<META HTTP-EQUIV="Refresh" Content="0; URL=contact-serenity-moving-thank-you.html">
?>
</BODY>
</HTML>
Comment