Re: Sending email - Subject with accenter characters
Reply #1 –
@zolwito thanks for the info, this should be resolved in future updates, I can give you a workaround for it until it gets fixed.
Locate Mailer.php in the helpers folder. when you do, open it and then add below code inside the public function send_mail($receipient_emails, $subject, $msg), immediately after this $mail = new PHPMailer; like in the image below.
$mail->CharSet = PAGE_CHARSET;
OR this,
$mail->CharSet = 'Your encoding here';
if you don't want to use the system default page encoding which is UTF-8.