i am using a form to get informtaion from the user and then the contents will be mailed to me.
<?php
$message = $in_date;
$message .= $other_cat;
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: webmaster@".$_SERVER['SERVER_NAME'];
$subject = "Link request";
$extra = "From: webmaster@".$_SERVER['SERVER_NAME'];
mail("taz@dfvd.com", $subject, $message, $headers, $extra);
?>
How would i get the two varible's
$message = $in_date;
$message .= $other_cat;
to display on seperate lines, i have tried \n and \r\n but neither look. could anyone help me please?
plus i will have about 7 other fields to add to the email. thank you