I try to use PHPMailer to send registration, activation. etc mail to users:
require(\"class.phpmailer.php\");
$mail -> charSet = \"UTF-8\";
$mail = new PH
I was getting ó in $mail->Subject /w PHPMailer.
So for me the complete solution is:
// Your Subject with tildes. Example.
$someSubjectWithTildes = 'Subscripción España';
$mailer->CharSet = 'UTF-8';
$mailer->Encoding = 'quoted-printable';
$mailer->Subject = html_entity_decode($someSubjectWithTildes);
Hope it helps.