I currently am using the following php code to prepare a message for an email:
$message = "$First_Name,$Email_Address,$attn \n";
The format of the output it produces is: Paul,paul@myb.com,Teacher
I now need the output in this format (ie. two carriage returns after each piece of data and labels before each piece of data:
first name = Darius
email = Darius@myb.com
Profession = Tech Buff
How do I implement a carriage return in a php script?
list ($First_Name,$Email_Addres
$msg = "first name = " . $First_Name . "\n\n";
$msg .= "email = " . $Email_Address . "\n\n";
$msg .= "Profession = " . $attn . "\n\n";
$msg now contains your output