K, here’s my problem… when I send mail through a send mail form on my web site i get this in my mail box (Outlook express)
<p align=“left”><font face=“Courier New_12pt_st” size=“12” color="#673434">» ärende «</font></p>
How do I remove all the obviosly enoyng ("<p align=" and so on)
text??
Here is the PHP
<?php
$send = "me@mine.com";
$subject = "Mail från hemsidan";
$headers = "From: " . $_POST["namn"];
$headers .= "<" . $_POST["mail"] .">
";
$headers .= "Reply-To: " . $_POST["mail"];
$message = stripslashes("$meddelande");
$message = $_POST["meddelande"];
mail($send, $subject, $message, $headers);
?>