Aimeos
Aimeos
This is planned for next year
@maechler If TCPDF is required by another composer package too, the files will be once in the `./vendor/` directory and once in `./typo3conf/ext/pdfviewhelpers/Resources/Private/PHP/tcpdf/`. In the TER package, TCPDF must be...
@maechler A simple solution is to leave the directories listed in the classmap empty by default and only add the source code of tcpdf and fpdi in the package uploaded...
A common problem is a low PHP memory limit as Doctrine DBAL requires some memory. Change the memory limit to 128MB to be on the save side.
A GraphQL API for administration is now included in Aimeos 2022.10.1+
The code for adding the BCC email address hasn't change between 19.x and 20.x: https://github.com/aimeos/ai-client-html/blob/2020.10/client/html/src/Client/Html/Email/Payment/Standard.php#L287-L319 You only need: ``` client.html.email.bcc-email = [email protected] ``` in the TSConfig field of your scheduler...
Are you also able to debug the problem to see where adding the BCC address fails?
We think the problem may be somewhere in the Symfony Mailer component TYPO3 is using. Can you check if the BCC address is added here (typo3conf/ext/aimeos/Resources/Private/Extensions/ai-typo3/lib/custom/src/MW/Mail/Message/Typo3.php): https://github.com/aimeos/ai-typo3/blob/master/lib/custom/src/MW/Mail/Message/Typo3.php#L115 And then available...
The Symfony Mailer package TYPO3 is using has a bug which discards BCC adresses and which isn't fixed since several months: https://github.com/symfony/symfony/pull/39744
There's a workaround mentioned: https://forge.typo3.org/issues/92354 Also, you can use the new `Email` delivery service provider to send order e-mails to shop owners (and adapt the e-mail to your needs).