Hi,
Our Magento version is 2.2.5, dotmailer/dotmailer-magento2-extension version is 2.6.0 and MySQL character set is UTF-8. When we saved the "Template Subject" with special characters ( For example ä ö ü ), it couldn't show the text properly on the page. It seems the text is decoded twice.
Class : Dotdigitalgroup\Email\Plugin\TemplatePlugin
line 139~141
if ($field == 'template_subject') {
$result = utf8_decode($result);
}
Hi, Our Magento version is 2.2.5, dotmailer/dotmailer-magento2-extension version is 2.6.0 and MySQL character set is UTF-8. When we saved the "Template Subject" with special characters ( For example ä ö ü ), it couldn't show the text properly on the page. It seems the text is decoded twice. Class : Dotdigitalgroup\Email\Plugin\TemplatePlugin line 139~141
line 163
I removed the utf8_decode function and it showed correctly.
Thanks, Derek