RE: Part 2: Sending variables from a Flash Movie to a PHP script, and then using that

Can anyone tell me how to get a line break on the $Message variable so that the $Name and $Email will appear on different lines?

<?

// Recieving and Creating Variables…
$Name = $_POST[‘name’];
$Email = "josh@williamsfp.com";
$Message = “$Name” ./n. “$Email”;
$Subject = “New Web Lead”;
$Header = “From: $Name <$Email>”;

//Performing Mail script…
mail($Email, $Subject, $Message, $Header);

?>