I am using the MAIL function and would like to get carriage return into my message. I thought this would work but it doesn't. Any ideas?
<html>
<head><title>Mail To</title></head>
<body>
THIS IS A TEST
<script language="php">
$etype=$HTTP_GET_VARS['etype'];
$email=$HTTP_GET_VARS['email'];
$Name=$HTTP_GET_VARS['Name'];
$HomePhone=$HTTP_GET_VARS['HomePhone'];
$WorkPhone=$HTTP_GET_VARS['WorkPhone'];
$CallTime=$HTTP_GET_VARS['CallTime'];
$emsg="\r".
"Name: ".$Name."\r".
"Home Phone: ".$HomePhone."\r".
"Work Phone: ".$WorkPhone."\r".
"Best time to call: ".$CallTime."\r".
print $emsg;
mail("$email","TEST - $etype","$emsg"
</script>
</body></html>
<html>
<head><title>Mail To</title></head>
<body>
THIS IS A TEST
<script language="php">
$etype=$HTTP_GET_VARS['etype'];
$email=$HTTP_GET_VARS['email'];
$Name=$HTTP_GET_VARS['Name'];
$HomePhone=$HTTP_GET_VARS['HomePhone'];
$WorkPhone=$HTTP_GET_VARS['WorkPhone'];
$CallTime=$HTTP_GET_VARS['CallTime'];
$emsg="\r".
"Name: ".$Name."\r".
"Home Phone: ".$HomePhone."\r".
"Work Phone: ".$WorkPhone."\r".
"Best time to call: ".$CallTime."\r".
print $emsg;
mail("$email","TEST - $etype","$emsg"
</script>
</body></html>