Quote from: alchime at Feb 26, 2008, 08:37 AM
[...] Is it something related to phpmailer in webloginPE class ? [...]
PHPMailer has a public property called
$CharSet. The default is
iso-8859-1. You can change this in webloginpe.class.php.
at about line 660 you should see this
// Bring in php mailer!
$Register = new PHPMailer();
$Register->From = $myEmail;
$Register->FromName = $siteName;
$Register->Subject = $emailSubject;
Right after this line:
$Register = new PHPMailer();
add this line:
$Register->CharSet = "UTF-8";
Also, around line 692 there is this code:
$Notify = new PHPMailer();
directly after that add this line:
$Notify->CharSet = "UTF-8";
-sD-
Dr. Scotty Delicious, DFPA.