Code
pnMail('me@localhost.localdomain', 'pnmail testing', "<b>testing text</b>", '', true);
The last parameter (true) passed to pnMail should make it a HTML email. Unfortunately, the email wasn't displayed as HTML. Instead, the source code is displayed in plain text, like the following:
:
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset="UTF-8"
Code
<b>testing text</b>
I'm sure evolution is set to HTML mode. It seems the content type is correct. Is there anything that I'm doing wrong here?
