I try to use PHPMailer to send registration, activation. etc mail to users:
require(\"class.phpmailer.php\"); $mail -> charSet = \"UTF-8\"; $mail = new PH
$mail -> CharSet = "UTF-8"; $mail = new PHPMailer();
line $mail -> CharSet = "UTF-8"; must be after $mail = new PHPMailer(); and with no spaces!
$mail -> CharSet = "UTF-8";
$mail = new PHPMailer();
try this
$mail = new PHPMailer(); $mail->CharSet = "UTF-8";