Format the e-mail contents sent by mailer.php

Im thinking theres an easy answer to this however i cant seem to over come the problem.

All im now trying to do is to have the information sent to me presented neatly in the e-mail. For example to have the ‘$message’ vairables presented on a new line.

I know all the html coding well, but dont know how to implement it into the php.

Here is the php mailer code below:

<?php
$product = $_POST[‘product’];
$flavour = $_POST[‘flavour’];
$container = $_POST[‘container’];
$size = $_POST[‘size’];
$labeltype = $_POST[‘labeltype’];
$logoname = $_POST[‘logoname’];
$contactnumber = $_POST[‘contactnumber’];
$contactemail = $_POST[‘contactemail’];
$owncomment = $_POST[‘owncomment’];

$message = ‘Product Type: ‘. $product .’, Flavour:’. $flavour .’, Container Type:’. $container .’, Size:’. $size .’, Label type:’. $labeltype .’, Logo Name:’. $logoname .’, Contact Number:’. $contactnumber .’, Contact E-Mail:’. $contactemail .’, Comments:’. $owncomment .’ ';

//To, Subject, Message, Header
mail('email@email.co.uk ', ’ ’ . $logoname . ’ ', $message, ‘From: ’ . $contactemail . ’ <’ . $contactemail . ‘>’);
//header(‘Location: index.html’);

?>

Much appreciated
Ian :nerd: