I try to use PHPMailer to send registration, activation. etc mail to users:
require(\"class.phpmailer.php\");
$mail -> charSet = \"UTF-8\";
$mail = new PH
The simplest way and will help you with is set CharSet to UTF-8
$mail->CharSet = "UTF-8"
$mail = new PHPMailer();
$mail->CharSet = "UTF-8";
$mail->Encoding = "16bit";
I work myself this way
$mail->FromName = utf8_decode($_POST['name']);
http://php.net/manual/en/function.utf8-decode.php