View Single Post
  #4 (permalink)  
Old 24-04-2007, 04:24 AM
29FIVE Designs 29FIVE Designs is offline
Member
 
Join Date: Apr 2007
Posts: 84
Default

If you are using double quotes (") around your body content, you can use \n for a line break. However, if you are using single quotes (') around your body, you can simply enter a line.

Example (")
$body = "Line One\nLine Two";
This would come out as:
Line One
Line Two

Example (')
$body = 'Line One
Line Two';
This would also come out as:
Line One
Line Two
Reply With Quote