PHP-Code:
<?
$nachricht = "<html>
<head>
<title>Das ist der Titel</title>
</head>
<body>
<b><i>Text</i></b>
</body>
</html>";
mail("meine@email.net","Betreff",$nachricht, "MIME-Version: 1.0\n Content-type: text/html; charset=\"iso-8859-1\" ");
}
?>
Es ist au nicht das Problem, dass es nicht laufen würde, nein, die email kommt einfach nicht als HTML Mail an.
Ich öffne sie in Outlook und sehe meinen HTML Code vor mir
PHP-Code:
<html>
<head>
<title>Das ist der Titel</title>
</head>
<body>
<b><i>Text</i></b>
</body>
</html>
Was mache ich denn falsch?
Kommentar