I am trying to format an email message and I can't seem to get new lines started. The code works this way:
$namex = $POST['name'];
$facilityx = $POST['facility'];
$msg = "$namex";
It also works this way:
$namex = $POST['name'];
$facilityx = $POST['facility'];
$msg = "$facilityx";
But when I try to introduce new lines, etc like this:
$namex = $POST['name'];
$facilityx = $POST['facility'];
$msg = "$namex\n$facilityx";
I get nothing. It is driving me absolutely nuts!!! Any ideas?