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.