Skip to content

Commit e89d09d

Browse files
Andrewb89nikshostko
authored andcommitted
MAGETWO-63154: Special characters in store name converted to numerical character references in email subject
1 parent 1ce1279 commit e89d09d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/internal/Magento/Framework/Mail/Template/TransportBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ protected function prepareMessage()
275275
$body = $template->processTemplate();
276276
$this->message->setMessageType($types[$template->getType()])
277277
->setBody($body)
278-
->setSubject($template->getSubject());
278+
->setSubject(html_entity_decode($template->getSubject(), ENT_QUOTES));
279279

280280
return $this;
281281
}

0 commit comments

Comments
 (0)