When i fill in the form to try i dont receive the email with the information.
My page is
My php is
My php text is
HTML>
<HEAD>
<TITLE>Succesfully processed your Sign In</TITLE>
</HEAD>
<BODY>
<H2>Thanks for Joining Maddog Racing</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "nik@maddogsimracing.com";
$mailsubj = "Maddog Racing Sign Up";
$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);
?>
</BODY>
</HTML>
My properties on the form are
Action : signup.php
post
empty box.
My email works and it gets redirected to my AOL account ok
Please help or no one will join my team LOL
Cheers Nik
My page is
My php is
My php text is
HTML>
<HEAD>
<TITLE>Succesfully processed your Sign In</TITLE>
</HEAD>
<BODY>
<H2>Thanks for Joining Maddog Racing</H2>
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = "nik@maddogsimracing.com";
$mailsubj = "Maddog Racing Sign Up";
$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);
?>
</BODY>
</HTML>
My properties on the form are
Action : signup.php
post
empty box.
My email works and it gets redirected to my AOL account ok
Please help or no one will join my team LOL
Cheers Nik
Comment