diff --git a/etemplate/inc/class.bo_tracking.inc.php b/etemplate/inc/class.bo_tracking.inc.php
index 17e26b55d1..e860b3bebe 100644
--- a/etemplate/inc/class.bo_tracking.inc.php
+++ b/etemplate/inc/class.bo_tracking.inc.php
@@ -425,7 +425,7 @@ class bo_tracking
$send->FromName = '';
}
$send->Subject = $subject;
- $send->Body = $this->get_body($html_email,$data,$old);
+ $send->Body = "\n
\n".$this->get_body($html_email,$data,$old)."\n\n";
foreach($attachments as $attachment)
{
@@ -621,7 +621,7 @@ class bo_tracking
$body = '';
if ($html_email)
{
- $body = "\n\n".''."\n";
+ $body = ''."\n";
}
// new or modified message
if (($message = $this->get_message($data,$old)))
@@ -645,7 +645,7 @@ class bo_tracking
}
if ($html_email)
{
- $body .= "
\n\n\n";
+ $body .= "
\n";
}
return $body;
diff --git a/notifications/inc/class.notification_email.inc.php b/notifications/inc/class.notification_email.inc.php
index 989b09bee3..4ab93a024a 100644
--- a/notifications/inc/class.notification_email.inc.php
+++ b/notifications/inc/class.notification_email.inc.php
@@ -119,10 +119,10 @@ class notification_email implements iface_notification {
}
if($this->preferences->external_mailclient) {
$body_plain = $_messages['plain']['text'].$_messages['plain']['link_external'];
- $body_html = $_messages['html']['text'].$_messages['html']['link_external'];
+ $body_html = "\n\n".$_messages['html']['text'].$_messages['html']['link_external']."\n\n";
} else {
$body_plain = $_messages['plain']['text'].$_messages['plain']['link_internal'];
- $body_html = $_messages['html']['text'].$_messages['html']['link_internal'];
+ $body_html = "\n\n".$_messages['html']['text'].$_messages['html']['link_internal']."\n\n";
}
$this->mail->ClearAddresses();
$this->mail->ClearAttachments();