Having submission from contact form be on seperate lines?

Hey All,

I am trying to get it to where the email is on seperate lines.

Like right now it is

Name: My Name// Phone: 1234567 //Email: mine@email.com// From: 123 Main, MyCity, CA// Heard from: Postcard//Inquiring for: Self//Message: Just checking things out.

I want it to be like

Name: My Name
Phone: 1234567
Email: mine@email.com
From: 123 Main, MyCity, CA
Heard from: Postcard
Inquiring for: Self
Message: Just checking things out.

Here is the code I am using.

$subject = "Submission from IPS Website: $topic";
$message = "$name Name: $first_name  $last_name// Phone: $phone //Email: $email// From: $address, $city, $state// Heard from: $hear_about//Inquiring for: $inquiry//Message:  $message";
$headers = "From: $email";

Any help would be appreciated.

add newline breaks (
) to your string.

That did it. Thank You very much,

Any way I can add bold to them?

Change your mail header content type to text/html and format the thing as an HTML document.