Weird problem with PHP mail() under Linux. - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T00:09:54Z http://stackoverflow.com/feeds/question/562635 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/562635/weird-problem-with-php-mail-under-linux 2 Weird problem with PHP mail() under Linux. Vilx- 2009-02-18T20:15:12Z 2009-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>&lt;?php $HTMLPart = chunk_split(base64_encode('&lt;html&gt;&lt;body style="color: red"&gt;Test.&lt;/body&gt;&lt;/html&gt;')); $PlaintextPart = chunk_split(base64_encode('&gt;&gt;&gt; TEST &lt;&lt;&lt;')); $Headers =&lt;&lt;&lt;AKAM From: "My Test" &lt;my@mail.com&gt; Reply-To: my@mail.com MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="9-1410065408-1410065408=:27514" AKAM; $Body =&lt;&lt;&lt;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'; ?&gt; </code></pre> http://stackoverflow.com/questions/562635/weird-problem-with-php-mail-under-linux/562668#562668 2 Answer by Paul Tomblin for Weird problem with PHP mail() under Linux. Paul Tomblin 2009-02-18T20:22:26Z 2009-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>