Search found 7 matches

by Webrocker
24 Jan 2024, 17:56
Forum: TYPO3 extension
Topic: Config for multiple BCC-Mails?
Replies: 2
Views: 40300

Re: Config for multiple BCC-Mails?

I tried the TypoScript Array way …bcc-email.10 = my@addre.ss …bcc-email.20 = other@add.ress , but then the job fails. controller.jobs.order.email.payment.bcc-email { 0 = my@addre.ss 1 = other@add.ress } This should be correct but maybe the underlying Symfony Mailer package doesn't work as expected....
by Webrocker
24 Jan 2024, 17:55
Forum: TYPO3 extension
Topic: Invoice Email PDF file name
Replies: 3
Views: 50177

Re: Invoice Email PDF file name

Code: Select all

\Aimeos\Controller\Jobs\Order\Email\Payment\Standard::macro( 'filename', function( \Aimeos\MShop\Order\Item\Iface $order ) {
	return 'Bestellung-' . $order->getId() . '_' . $order->getTimeCreated() . '.pdf';
} );
Can confirm this works fine! Thank you. :-)
by Webrocker
22 Jan 2024, 20:15
Forum: TYPO3 extension
Topic: Invoice Email PDF file name
Replies: 3
Views: 50177

Re: Invoice Email PDF file name

I found this: https://github.com/aimeos/ai-controller-jobs/blob/9142c7f27a397a69a5288ffd23a37aded6188955/src/Controller/Jobs/Order/Email/Payment/Standard.php#L293C2-L303C1 protected function filename( \Aimeos\MShop\Order\Item\Iface $order ) : string { return $this->context()->translate( 'controller/...
by Webrocker
22 Jan 2024, 11:41
Forum: TYPO3 extension
Topic: Invoice Email PDF file name
Replies: 3
Views: 50177

Invoice Email PDF file name

Hi,

is there an option to alter the filename of the PDF that gets attached to the order/payment email when the option "pdf = 1" is set ("invoice-123.pdf")?

thanks again,
Tom
by Webrocker
22 Jan 2024, 11:21
Forum: TYPO3 extension
Topic: Config for multiple BCC-Mails?
Replies: 2
Views: 40300

Config for multiple BCC-Mails?

Hi, in the Aimeos Docu (https://aimeos.org/docs/latest/config/controller-jobs/order-email/#bcc-email_1) it says: Type: string|array - E-mail address or list of e-mail addresses I tried to set this in the TYPO3 extension (planner/cronjob settings). When I state one email address …bcc-email= my@addre....
by Webrocker
06 Dec 2023, 12:55
Forum: TYPO3 extension
Topic: Overwriting the email templates?
Replies: 3
Views: 39445

Re: Overwriting the email templates?

Hi, thanks for the fast answer! In that Template directory I can add modifications, for example for the price partial: typo3conf/ext/my_shop/templates/client/html/common/partials/price.php This works, and I see the changes in the front end. That shouldn't work because the directory is (replace "...
by Webrocker
05 Dec 2023, 18:30
Forum: TYPO3 extension
Topic: Overwriting the email templates?
Replies: 3
Views: 39445

Overwriting the email templates?

Hi, I'm using TYPO3 v11.5.27 and aimeos v22.10.9, PHP 8.1 on Ubuntu I'm a bit confused how and where the templates for the emails that get send via the cronjob can be overwritten. I have spent quite some time now in the aimeos docs, but I think I'm too thickheaded to understand how this is supposed ...