Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

nuSendEmail character encoding

toms
Posts: 785
Joined: Sun Oct 14, 2018 11:25 am

nuSendEmail character encoding

Unread post by toms »

nuSendEmail(), respectively PHPMailer uses ISO-8859-1 as default character set.
As a consequence, accented characters (like German umlauts äöü) are not correctly displayed.
The character encoding should be configurable.

As a workaround, I modified nucommon.php

Code: Select all

$mail    = new PHPMailer();
$mail->CharSet = 'UTF-8'; // line added
Not sure how this is handled in nuBuilder Forte though.
Post Reply