// Mail content accept accentuated chars

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@14075 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fGaillard
2012-03-13 13:40:19 +00:00
parent 1fa73f0dc4
commit c0d9c54e7b
+1
View File
@@ -33,6 +33,7 @@ require_once(dirname(__FILE__).'/init.php');
$smtpChecked = (trim($_POST['mailMethod']) == 'smtp');
$smtpServer = $_POST['smtpSrv'];
$content = urldecode($_POST['testMsg']);
$content = utf8_encode(html_entity_decode($content));
$subject = urldecode($_POST['testSubject']);
$type = 'text/html';
$to = $_POST['testEmail'];