I think you mean, put each on separate line. Doing a table is just the same thing unless you have header you want to inclose or something else you want to add.
Anyway, in a email you use /n or /r/n instead of a <br> to force a linefeed. You want something like this:
PHP Code:
<?php
if(isset($_POST["copy"]) && $_POST["copy"] == 1)
{
$mailTo = htmlspecialchars($_POST['Email']);
$name = htmlspecialchars($_POST['Name']);
$mailFrom = htmlspecialchars($_POST['Email']);
$telefon = htmlspecialchars($_POST['Telefon']);
$adresse = htmlspecialchars($_POST['Adresse']);
$subject = htmlspecialchars($_POST['Subject']);
$message_text = htmlspecialchars($_POST['Message']);
$header = "From: ". $name . " <" . $mailFrom . ">\r\n";
$header .= "Content-Type: text/plain; charset=\"UTF-8\"";
$message ='Navn: '.$name.' \n
E-post: '.$mailFrom.' \n
Telefon: '.$telefon.' \n
Adresse: '.$adresse.' \n
Melding: '.$message_text.' \n';
mail($mailTo, $subject, $message, $header);
}
?>