Welcome to the nuBuilder Forums!

Register and log in to access exclusive forums and content available only 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