Hi all,
I have this mail which works fine:
But how can I pass the html tags, as html tags so it shows bold in my inbox?
As it is now, i recieve the tags as normal letters..
This is what I have:
if(empty($error_msg)) {
// If validated -> Send email
$to = "MyEmail@Mail.Mail";
$subject = "Email Fra enkelt-webdesign.dk";
$message = $besked;
$headers .= "<b>Der er ny besked fra:</b>\n\n";
$headers .= "<b>Navn:</b> $navn\n";
$headers .= "<b>Email:</b> $email\n";
$headers .= "<b>Virksomhed:</b> $virksomhed";
$headers .= "<hr />";
mail($to,$subject,$message,$headers);
}
Klemme