Hi, in my script, I have several bits of data put together with .=
like this:
$subject = "A new client";
$string .= $_POST['message'];
$string .= $_POST['Name'];
$string .= $_POST['Address_line1'];
$string .= $_POST['Address_line2'];
$string .= $_POST['Post_code'];
$string .= $_POST['Telephone_number'];
$body = wordwrap($string, 70);
$from = $_POST['email'];
But when I use the script to email all of the data somewhere, when I get the resulting email, all of the information is together with no spaces. I really need spaces between each one or even better a paragraph break. Please help!
I can't spend my life reading emailsthatlooklikethisitwouldbesoupsetting!
edit: If I put each one into its own variable and add all that to the body (I have no idea how) would that be easier to do then??