Ho risolto il problema, trovando la soluzione nel Forum di HURU Helpdesk. Per chi ne fosse interessato, riporto sotto la soluzione:
[/font][/size][/font][/color]
Open head.php and go to line 480 where you find:
[/color]//setup the mailer & create message $mail =& JFactory::getMailer(); $config =& JFactory::getConfig(); $mail->addRecipient($to); $mail->setSender($sender); $mail->setSubject($subject); $mail->setBody($body;
[/color][/font][/size][/font][/color] |
and substitute it by:
[/color]//setup the mailer & create message $mail =& JFactory::getMailer(); $config =& JFactory::getConfig(); $mail->addRecipient($to); $mail->setSender($sender); //added this so that mail gets sent out ok for other languages $subject = html_entity_decode($subject, ENT_QUOTES, 'UTF-8'); $mail->setSubject($subject); //added this so that mail gets sent out ok for other languages $body = html_entity_decode($body, ENT_QUOTES, 'UTF-8'); $mail->setBody($body;
8) [/font][/size][/font][/color] |
|
|
|