I am using mail() to send emails from a form but am having trouble with the message element with the following code.
$AdminMessage = "$name, Submitted the following Information:\n";
$AdminMessage .= "Email: $from\n";
$AdminMessage .= "Enquiring About: $PropName\n";
$AdminMessage .= "Address:\n";
$AdminMessage .= "$address\n";
$AdminMessage .= "Comments/Question:\n";
$AdminMessage .= "$comments\n";
If I just use the first line of the above code, all is fine. Any more than that however and the email ends in the spam bin.