When I send a html mail, I can read it on my iPad and in Gmail. But Outlook and on my iMac the program Mail don't show the body message. They show a blank message. Below I placed the original message. I hope anybody can tell me what is wrong with it.

Delivered-To: ****@gmail.com
Received: by 10.50.196.*** with SMTP id io4cs329714igc;
        Sun, 5 Feb 2012 05:32:52 -0800 (PST)
Received: by 10.14.206.*** with SMTP id l5mr4398177eeo.22.1328448771870;
        Sun, 05 Feb 2012 05:32:51 -0800 (PST)
Return-Path: <***@***.nl>
Received: from ***.****.nl ([85.17.***.***])
        by mx.google.com with ESMTPS id n46si6997510eeh.10.2012.02.05.05.32.51
        (version=TLSv1/SSLv3 cipher=OTHER);
        Sun, 05 Feb 2012 05:32:51 -0800 (PST)
Received-SPF: neutral (google.com: 85.17.145.53 is neither permitted nor denied by best guess record for domain of ***@***.nl) client-ip=85.17.145.***;
Authentication-Results: mx.google.com; spf=neutral (google.com: 85.17.145.*** is neither permitted nor denied by best guess record for domain of ***@***.nl) smtp.mail=***@***.nl
Received: from **** by ***.nl with local (Exim 4.72)
    (envelope-from <***@***.nl>)
    id 1Ru2CW-0000Fj-Dp; Sun, 05 Feb 2012 14:32:16 +0100
Date: Sun, 05 Feb 2012 14:32:16 +0100
Message-Id: <E1Ru2CW-0000Fj-Dp@***.***.nl>
To: ***@gmail.com
Subject: Test html mail
From: *****.nl<*****@*****.nl>
To: ***@gmail.com
MIME-Version: 1.0
Content-Type: multipart/alternative; boundary="9f540ec8b1c1552cbe71240502b3f9e8"
Sender:  <***@***.nl>

--9f540ec8b1c1552cbe71240502b3f9e8
Content-Type: text/plain; charset=iso-8589-1
Content-Transfer-Encoding: 8bit
If you are seeing this is because you may need to change your
preferred message format from HTML to plain text.

Activeer uw HTML mail instellingen.
--9f540ec8b1c1552cbe71240502b3f9e8
Content-Type: text/html; charset=iso-8589-1
Content-Transfer-Encoding: 8bit
<html>
<head>
<title>Hello world</title> 
</head>
<body>
this is a test.
</body>
</html>

I hope you understand my problem. Sorry for my bad English.

link|improve this question
feedback

2 Answers

To send mail i do like this:

$message = '<html><body><p align="center">XXXXXXXX</p></br></br></body></html>';
    $to = "mail@mail.it";
    $headers = "From: mail <no_reply@mail.it>\r\n"; 
    $headers .= "MIME-Version: 1.0" ."\n"; 
    $headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
    $object = "";
    $result = mail($to, $object, $message, $headers);
link|improve this answer
Thanks, but I want to know what is wrong in my script. – Tim Feb 5 at 14:33
can you show me it? – JackTurky Feb 5 at 14:36
feedback

There should be blank lines after the Content-Transfer-Encoding lines and the HTML section should be followed by a close boundary:

--9f540ec8b1c1552cbe71240502b3f9e8
Content-Type: text/plain; charset=iso-8589-1
Content-Transfer-Encoding: 8bit

If you are seeing this is because you may need to change your
preferred message format from HTML to plain text.

Activeer uw HTML mail instellingen.
--9f540ec8b1c1552cbe71240502b3f9e8
Content-Type: text/html; charset=iso-8589-1
Content-Transfer-Encoding: 8bit

<html>
<head>
<title>Hello world</title> 
</head>
<body>
this is a test.
</body>
</html>
--9f540ec8b1c1552cbe71240502b3f9e8--
link|improve this answer
thanks, i'm going to test this! – Tim Feb 5 at 15:49
hm, no effect unfortunately. – Tim Feb 5 at 17:39
Those changes were necessary, so there may be another problem with the message source. Can you edit your question to show the source after you made those changes? – SimonMayer Feb 5 at 18:17
@Tim Another thing to check - are you separating each line with both a "\r" and "\n" character? The standard requires it. If you only include one, it would explain inconsistent performance across clients (particularly on different operating systems) – SimonMayer Feb 5 at 18:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.