Sven wrote: Any solution to my problem with 'rn' instead of new line?
Following little source code editing of file "publicmail.php" made it working for me:
Go to line 161 to 163
Code:
$mailtext = stripslashes($mailtext);
$mailtext = wordwrap($mailtext, 70); // Just to be safe that SMTP-send works
$subject = stripslashes($subject);
and replace it with:
Code:
$mailtext = wordwrap($mailtext, 70); // Just to be safe that SMTP-send works
$mailtext = str_replace('\r\n', "\r\n", $mailtext); // Replace Windows breaks (rn)
$mailtext = stripslashes($mailtext);
$subject = stripslashes($subject);
Thanks to KoFShinobi, he was writing a post, didnt working for me, but working after little rearranging:
www.joomlapolis.com/forum/13-general-plugins/95507-public-mail-plugin-rn-instead-of-break
I hope this hack leaves other features working
Best regards, Macjoomla
PS: becca800, did you get you copy?