If you want to print it using HTML, you will need to use <br /> or use nl2br() .
Using <br /> :
$message = 'Make: ' . $_POST['name'] . '<br />';
If you want to send plaintext, set the appropriate HTTP header, for example
header('Content-Type: text/plain');
Most browsers will take this as a hint to display it in raw mode.
source share