This is the php script I'm using-
PHP Code:
$message = " $todayis [EST] \n
Attention: $attn \n
Message: $notes \n
From: $visitor ($visitormail)\n
Additional Info : IP = $ip \n
Browser Info: $httpagent \n
Referral : $httpref \n
";
$from = "From: $visitormail\r\n";
mail("dgrotzinger@adelphia.net", $subject, $message, $from);
And here is my form data-
HTML Code:
<form action="form.php" method="post" enctype="text/plain" name="Join our mailing list" target="_self" id="Join our mailing list">
<p align="center"><span class="style10">
Join Our Mailing List <br>
e-mail:</span>
<input name="email" type="text" id="email" size="15">
<?php echo $_POST['email']?><br>
<input type="submit" name="Submit" value="Join">
</p>
</form>
Thanks,