|
Posted by TheTeapot on 04/14/06 11:07
I would recommend using html formatting in your emails, so that then
you would put
<?php
$name = "freddie";
$message.="Hi Joe,<br>\r\n";
$message.="\t $name has Filled out the form on the Website,<br>\r\n";
$message.="The information from the form is listed below:<br>\r\n";
$message.="more info<br>\r\n";
$message.="more info<br>\r\n";
mail("email address", "subject",$message,"FROM:email address");
?>
[Back to original message]
|