Weird problem with PHP mail() under Linux. - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T00:09:54Zhttp://stackoverflow.com/feeds/question/562635http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/562635/weird-problem-with-php-mail-under-linux2Weird problem with PHP mail() under Linux.Vilx-2009-02-18T20:15:12Z2009-02-18T20:22:26Z
<p>This is the case when it "works on my machine". Except that my machine is Windows, and the target is some sort of Linux.</p>
<p>The idea is that the <code>mail()</code> function puts a newline between the <code>MIME-Version</code> and <code>Content-Type</code> headers, thus breaking the whole thing. Here's the code, simpliefied as much as possible:</p>
<pre><code><?php
$HTMLPart = chunk_split(base64_encode('<html><body style="color: red">Test.</body></html>'));
$PlaintextPart = chunk_split(base64_encode('>>> TEST <<<'));
$Headers =<<<AKAM
From: "My Test" <my@mail.com>
Reply-To: my@mail.com
MIME-Version: 1.0
Content-Type: multipart/alternative; boundary="9-1410065408-1410065408=:27514"
AKAM;
$Body =<<<AKAM
This is a multi-part message in MIME format.
--9-1410065408-1410065408=:27514
Content-Type: text/plain; charset="windows-1252"
Content-Transfer-Encoding: base64
$PlaintextPart
--9-1410065408-1410065408=:27514
Content-Type: text/html; charset="windows-1252"
Content-Transfer-Encoding: base64
$HTMLPart
--9-1410065408-1410065408=:27514--
AKAM;
echo 'Try 3: ';
echo mail('your@mail.com', 'Testmail', $Body, $Headers) ? 'WIN' : 'FAIL';
?>
</code></pre>
http://stackoverflow.com/questions/562635/weird-problem-with-php-mail-under-linux/562668#5626682Answer by Paul Tomblin for Weird problem with PHP mail() under Linux.Paul Tomblin2009-02-18T20:22:26Z2009-02-18T20:22:26Z<p>You probably have a carriage return AND a line feed there. Windows uses CR+LF to end lines, but Linux uses a line feed alone.</p>