Closed (works as designed)
Project:
Mime Mail
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
27 Nov 2009 at 17:30 UTC
Updated:
23 Oct 2010 at 14:09 UTC
If we use mimemail for all Drupal messages, like the /contact form, linebreaks are not converted to
and disappear in the HTML version.
Could mimemail.module be changed L274 ?
$body = check_markup($message['body'], $format, FALSE);
would become
$body = check_markup(nl2br($message['body']), $format, FALSE);
However I guess it's because my filter format does not apply linebreaks conversions, which is needed by some WYSIWYG editors. So maybe we could add the modification above as an option ?
Comments
Comment #1
sgabe commentedI guess you noticed by now that you can use a different filter for Mime Mail, see the module's settings page.