Search found 136 matches

by boettner
06 Aug 2020, 08:12
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

Did you rebuild/dump the autoload information from the BE Maintenance module and clear the caches afterwards?
by boettner
06 Aug 2020, 07:29
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

Good morning, everything you are doing should be ok according to previous posts. You are working in a TER installation, right? Meaning not in composer mode? Do you see your class included in typo3conf/autoload/autoload_classmap.php? As I didn´t do my own implementation yet, I unfortunately can´t off...
by boettner
05 Aug 2020, 14:53
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

I will set back my changes to the point i had the selection of the Email Decorator. Yes, and place it in the Decorator directory mentioned above and extend it like so: <?php /** * @license LGPLv3, http://opensource.org/licenses/LGPL-3.0 * @copyright Metaways Infosystems GmbH, 2011 * @copyright Aime...
by boettner
05 Aug 2020, 14:35
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

Did you maybe mix up class type and class location ?

Decorators go into: MShop\Service\Provider\Decorator
Provider into: MShop\Service\Provider\Decorator\Delivery (or ... Payment)

The classes must extend core classes respectively.
by boettner
05 Aug 2020, 14:03
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

Try placing it in your "ai-html-client" ext directory from where all other custom classes/templates get called correctly. At the same level of the client directory:
custext.png
custext.png (12.29 KiB) Viewed 3399 times
From there: /lib/custom/src/MShop/Service/Provider/Delivery/Email.php
by boettner
05 Aug 2020, 13:04
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

I didn´t set this up for my own yet but maybe the Decorator pattern can only be used on existing Providers. So you need to set it up in .../MShop/Service/Provider/Delivery Still placing it in [your_aimeos_ext]/Resources/Private/Extensions/[your_aimeos_ext] should be possible though. Full path: [your...
by boettner
05 Aug 2020, 12:50
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

No, there´s no separate Plugin necessary.
by boettner
05 Aug 2020, 11:34
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

Hi,

I´m currently doing the 18 > 20 update and didn´t implement my own separate email yet. But this would be the location for the decorator class:
[your_aimeos_ext]/Resources/Private/Extensions/[your_aimeos_ext]/lib/custom/src/MShop/Service/Provider/Decorator/YourDecorator.php

Does that help?
by boettner
21 Jul 2020, 13:48
Forum: TYPO3 extension
Topic: Setup/migrate task via CLI?
Replies: 1
Views: 1247

Setup/migrate task via CLI?

Hi all,

is there a possibility to run the setup/migration task via CLI to avoid timeouts when run via Extension Manager from the browser?

Best Robert.
by boettner
29 Apr 2020, 13:05
Forum: TYPO3 extension
Topic: Separate mails for shop owner and customer - no bcc
Replies: 45
Views: 18396

Re: Separate mails for shop owner and customer - no bcc

and another follow-up on this one: For using templates, you can have a look at the XML deliver service provider as reference: https://github.com/aimeos/aimeos-core/blob/2019.10/lib/mshoplib/src/MShop/Service/Provider/Delivery/Xml.php As far as I see this is available since 2019.07, right? Then we wi...