From 339529a903368d7e60833b2a4dd18e860d010184 Mon Sep 17 00:00:00 2001 From: stefan crain Date: Thu, 24 Jan 2013 15:24:51 -0500 Subject: [PATCH] Needed those pre tags after all --- civicrm/scripts/processMailboxes.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/civicrm/scripts/processMailboxes.php b/civicrm/scripts/processMailboxes.php index 5b4237ced8..150c47073a 100644 --- a/civicrm/scripts/processMailboxes.php +++ b/civicrm/scripts/processMailboxes.php @@ -493,11 +493,8 @@ function civiProcessEmail($email, $customHandler) } // html emails need to be pre tagged - if($html){ + $email->body = '
'.$email->body.'
'; - }else{ - $email->body = $email->body; - } // Use the e-mail from the body of the message (or header if direct) to find traget contact $params = array('version' => 3, 'activity' => 'get', 'email' => $fromEmail['email'], );