PHP "page break", help me please!

Hi and help,
My problem is this. I got my mail form working using flash and php (My code is below) everything works, the submit button sends, and I recieve all my info in my email. BUT…

WITHIN MY PHP CODE, HOW DO I INCERT PAGE BREAK TYPE THINGS WITHIN THE MESSAGE PART OF MY EMAIL SO I CAN ORGANIZE ALL MY RECIEVED DATA BY LINE WITHIN MY RECIEVED EMAIL. (Code I`m refering to is in [COLOR=red]RED[/COLOR] below)

I want my message box to look like this:

First name: Jesse
Last name: Westlund
Email : jwestlund@jessewestlund.com

please please please help, anyone

Thanks and please email a copy of your answer to jwestlund@jessewestlund.com,

Jesse

[COLOR=#003366]<?php
/***************************************************\

  • PHP 4.1.0+ version of email script. For more
  • information on the mail() function for PHP, see
  • http://www.php.net/manual/en/function.mail.php
    ***************************************************/[/COLOR]
    [COLOR=#003366]
    // First, set up some variables to serve you in
    // getting an email. This includes the email this is
    // sent to (yours) and what the subject of this email
    // should be. It’s a good idea to choose your own
    // subject instead of allowing the user to. This will
    // help prevent spam filters from snatching this email
    // out from under your nose when something unusual is put.
    $sendTo = “jwestlund@jessewestlund.com”;
    $subject = “Graphic Request Form”;
    // variables are sent to this PHP page through
    // the POST method. $_POST is a global associative array
    // of variables passed through this method. From that, we
    // can get the values sent to this page from Flash and
    // assign them to appropriate variables which can be used
    // in the PHP mail() function.

// header information not including sendTo and Subject
// these all go in one variable. First, include From:
$headers = “From: " . $_POST[“firstName”] .” “. $_POST[“lastname”] . “<” . $_POST[“emailer”] .”>
";
// next include a replyto
$headers .= "Reply-To: " . $_POST[“emailer”] . "
";
// often email servers won’t allow emails to be sent to
// domains other than their own. The return path here will
// often lift that restriction so, for instance, you could send
// email to a hotmail account. (hosting provider settings may vary)
// technically bounced email is supposed to go to the return-path email
$headers .= "Return-path: " . $_POST[“emailer”];
// now we can add the content of the message to a body variable
[COLOR=red]$message = “From: " . $_POST[“firstName”] .” “. $_POST[“lastname”] . “<” . $_POST[“emailer”] .”>
" . " Title " . $_POST[“titles”]; [/COLOR]
[COLOR=red]$message .= "Company " . $_POST[“company”];[/COLOR]

// once the variables have been defined, they can be included
// in the mail function call which will send you an email
mail($sendTo, $subject, $message, $headers);
?>[/COLOR][URL=“http://www.jessewestlund.com/grform.html”]