Version 1.0.29

This commit is contained in:
ultimatemember
2015-01-28 17:16:04 +02:00
parent 31dc7962bf
commit 78833fa2e3
24 changed files with 290 additions and 41 deletions
+14
View File
@@ -3,7 +3,21 @@
class UM_Mail {
function __construct() {
add_filter('mandrill_nl2br', array(&$this, 'mandrill_nl2br') );
}
/***
*** @mandrill compatibility
***/
function mandrill_nl2br($nl2br, $message) {
// text emails
$nl2br = true;
return $nl2br;
}
/***