Flash form mailed using php, need help...
Posted: Fri Jul 21, 2006 12:19 am
Heya,
So if you visit http://www.hookmedia.biz/cabinet_source/v4_f you'll see my current project. If you fill out the two forms on the "Contact Us" page then it's emailed to wherever. But when the email shows up, all the content is on the same line, no spaces. Can anyone tell me how to make it so each one is on it's own line? Thanks!
Here's my PHP:
So if you visit http://www.hookmedia.biz/cabinet_source/v4_f you'll see my current project. If you fill out the two forms on the "Contact Us" page then it's emailed to wherever. But when the email shows up, all the content is on the same line, no spaces. Can anyone tell me how to make it so each one is on it's own line? Thanks!
Here's my PHP:
Code: Select all
<?php
$sendTo = "spencerhill@hookmedia.biz";
$subject = "Cabinet Source Contact Form Submission";
$headers = "From: " . $_POST["name"] ." " . $_POST[""]."";
$message = $_POST["comments"] . $_POST["phone"];
mail($sendTo, $subject, $message, $headers);
?>