Guest User

Untitled

a guest
Jun 18th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:ObjectManager/etc/config.xsd">
  2. <type name="MagentoEmailModelTemplate">
  3. <plugin name="mail_subject" type="VENDORMODULEPluginTemplate" sortOrder="100" />
  4. </type>
  5. </config>
  6.  
  7. namespace VENDORMODULEPlugin;
  8.  
  9. class Template
  10. {
  11. public function afterGetSubject(
  12. MagentoEmailModelTemplate $subject,
  13. $result
  14. ) {
  15. return htmlspecialchars_decode((string)$result, ENT_QUOTES);
  16. }
  17. }
Add Comment
Please, Sign In to add comment