// Fix encoding of test email

This commit is contained in:
Rémi Gaillard
2013-03-05 13:32:33 +01:00
parent a7365de9a8
commit fe6cbcedc8
+1 -1
View File
@@ -218,7 +218,7 @@ class AdminEmailsControllerCore extends AdminController
$smtpChecked = (trim(Tools::getValue('mailMethod')) == 'smtp');
$smtpServer = Tools::getValue('smtpSrv');
$content = urldecode(Tools::getValue('testMsg'));
$content = utf8_encode(html_entity_decode($content));
$content = html_entity_decode($content);
$subject = urldecode(Tools::getValue('testSubject'));
$type = 'text/html';
$to = Tools::getValue('testEmail');