Ik verstuur via een php pagina een email Content-type: text/html; charset=iso-8859-1
Maar nu zie ik hem in mijn hotmail gewoon goed, maar in outlook express zie ik alleen de HTML code?
Weet iemand waar dit aanligt...duimen gekruist.

De code:
-------------
$DeServernaam = $_SERVER['SERVER_NAME'];
$DeAfzender = '[email protected]';

$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= 'From: ' . $DeAfzender . "\r\n" .
'Reply-To: ' . $DeAfzender . "\r\n" .
'X-Mailer: MAILSEND';

$email = $row['email'];
$mail = mail ($email, $naam, $bericht, $headers);
---------------

Zo komt de mail binnen in outlook express (in hotmail ziet hij er goed uit)

Content-type: text/html; charset=iso-8859-1
From: [email protected]
Reply-To: [email protected]
X-Mailer: MAILSEND
X-Sender-Domain: theaterophetwater.nl

<META HTTP-EQUIV="Content-Type" CONTENT="text/html;charset=iso-8859-1">
<html>
<head>
.........etc...

Alvast bedankt..


Reageren