convert local html characters like Ü (#4069)

Foreign language html emails were sent as received.
Now all html entities should be converted to there corresponding UTF8 characters.
This commit is contained in:
ednt
2019-05-07 19:29:50 +02:00
committed by FusionPBX
parent 75a4154453
commit 4e558f7c3d

View File

@@ -225,7 +225,7 @@ if (sizeof($result) != 0) {
if ($fax_message != '') {
$fax_message = strip_tags($fax_message);
$fax_message = str_replace(" ", "\r\n", $fax_message);
$fax_message = html_entity_decode($fax_message);
$fax_message = str_replace("\r\n\r\n", "\r\n", $fax_message);
}