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:
parent
75a4154453
commit
4e558f7c3d
|
|
@ -225,7 +225,7 @@ if (sizeof($result) != 0) {
|
||||||
|
|
||||||
if ($fax_message != '') {
|
if ($fax_message != '') {
|
||||||
$fax_message = strip_tags($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);
|
$fax_message = str_replace("\r\n\r\n", "\r\n", $fax_message);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue