Skip to content

Magento 2.4.5: Abstract class does not see another class?

I’m working on fixing one of the plugins that stopped sending emails. It uses: use MagentoFrameworkMailTemplateTransportBuilder To send email: $transport = $this->transportBuilder->setTemplateIdentifier((int)$template) ->setTemplateOptions([‘area’ => MagentoFrameworkAppArea::AREA_FRONTEND, ‘store’ => $storeId]) ->setTemplateVars($templateVars) ->setFromByScope($sender) ->addTo($toSender) ->getTransport(); For some strange reason, this class is not… Read More »Magento 2.4.5: Abstract class does not see another class?

Upgrading from 2.4.3 to 2.4.3-p3

I am upgrading from 2.4.3 to 2.4.3-p3 and I have a few questions. In composer.json should I only be chnaging these 3 lines? “version”: “2.4.3-p3”, “magento/product-enterprise-edition”: “2.4.3-p3”, “magento/data-migration-tool”: “2.4.3”, (This was 2.3.4 previously) Thank you