I finally got my form working - just one more niggle - How do I get the different bits of info on separate lines?? This isn't working!
PHP Code:function sendMail($name,$email,$phone,$message){
$subject = "Message from website";
$from = "From: $name <$email>\r\nReply-To: $email\r\n";
$header = "MIME-Version: 1.0\r\n"."Content-type: text/html; charset=iso-8859-1\r\n";
$content = "From: $name\r\n
Contact Number: $phone\r\n
Enquiry: $message\r\n";
$content = wordwrap($content,70);
mail(MAIL_TARGET,$subject,$content,$from.$header);



Reply With Quote


Bookmarks