Skip to content

magento2.3

Auto Added by WPeMatico

preference :override class Pdfcreditmemos and class PrintAction not working

I override the classes ‘Pdfcreditmemos.php’ and ‘PrintAction.php’ to change the name of pdf Credit memos , but this is not working, it still works with origin classes, thanks for you help. MagentoSalesControllerAdminhtmlCreditmemoAbstractCreditmemoPdfcreditmemos MagentoSalesControllerAdminhtmlCreditmemoAbstractCreditmemoPrintAction *************di.xml <preference for=”MagentoSalesControllerAdminhtmlCreditmemoAbstractCreditmemoPdfcreditmemos” type=”LcdrInvoicePdfControllerAdminhtmlCreditmemoAbstractCreditmemoPdfcreditmemos”/> <preference for=”MagentoSalesControllerAdminhtmlCreditmemoAbstractCreditmemoPrintAction” type=”LcdrInvoicePdfControllerAdminhtmlCreditmemoAbstractCreditmemoPrintAction”/>… Read More »preference :override class Pdfcreditmemos and class PrintAction not working

How to add bcc for forgot password emails in Magento 2

I want add bcc for forgot password email in magento 2. When i checked the code – vendormagentomodule-customerControllerAccountForgotPasswordPost.php in execute method we have this try { $this->customerAccountManagement->initiatePasswordReset( $email, AccountManagement::EMAIL_RESET ); } How can i add Bcc for this mail. Thanks!