cart
cart copied to clipboard
wrong hook class in sendSellerMail
there is some issue with pdf attachment in version for typo3 9 for seller. In file typo3conf/ext/cart/Classes/Service/MailHandler.php class for hook is wrong:
if ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['cart']['getMailAttachmentsHook']) { foreach ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['cart']['getMailAttachmentsHook'] as $_classRef) {
it must be
if ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['cart']['MailAttachmentsHook']) { foreach ($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['cart']['MailAttachmentsHook'] as $_classRef) {