Hi,
I'm sending a plain text message, without smtp. Somehow 2 blank lines show up at the top of the message. Here's my code:
$meel = new nomad_mimemail();
$meel->debug_status = 'no';
$meel->set_from('
[email protected]', 'Some Name');
$meel->set_to('
[email protected]', 'Another Name');
$meel->set_subject('Just another test');
$meel->set_text('A line of text.');
$meel->send();
Version 1.6.2. The server runs PHP 5.2.8.
I fixed it by removing one BR on line 803. Will that have any implications?