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
ca1b074bee
commit
e01687752b
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue