diff --git a/application/itopwebpage.class.inc.php b/application/itopwebpage.class.inc.php
index f89976d076..97f720d158 100644
--- a/application/itopwebpage.class.inc.php
+++ b/application/itopwebpage.class.inc.php
@@ -220,6 +220,7 @@ EOF
echo "\n";
echo "
\n";
echo "{$this->s_title}\n";
+ echo "\n";
echo $this->get_base_tag();
// Stylesheets MUST be loaded before any scripts otherwise
// jQuery scripts may face some spurious problems (like failing on a 'reload')
diff --git a/core/email.class.inc.php b/core/email.class.inc.php
index 3a8a23e886..136c6e5851 100644
--- a/core/email.class.inc.php
+++ b/core/email.class.inc.php
@@ -43,7 +43,9 @@ class EMail
public function Send()
{
$sHeaders = 'MIME-Version: 1.0' . "\r\n";
- $sHeaders .= 'Content-type: text/html; charset=utf-8' . "\r\n";
+ // ! the case is important for MS-Outlook
+ $sHeaders .= 'Content-Type: text/html; charset=UTF-8' . "\r\n";
+ $sHeaders .= 'Content-Transfer-Encoding: 8bit' . "\r\n";
foreach ($this->m_aHeaders as $sKey => $sValue)
{
$sHeaders .= "$sKey: $sValue\r\n";