Search found 13 matches
- 11 Jul 2022, 15:22
- Forum: Laravel package
- Topic: Some conjobs seem not working
- Replies: 8
- Views: 1206
Re: Some conjobs seem not working
Sure... I really appreciate your help.
Thank you, dear!!
Thank you, dear!!
- 11 Jul 2022, 14:50
- Forum: Laravel package
- Topic: Some conjobs seem not working
- Replies: 8
- Views: 1206
Re: Some conjobs seem not working
Actually no, I didn't overwrite any template for the customer account e-mails. I did some debugging and the mail is sent correctly when I remove this only line: https://github.com/aimeos/ai-client-html/blob/2021.10/client/html/templates/email/account/text-body-standard.php#L34 However, the login but...
- 11 Jul 2022, 01:06
- Forum: Laravel package
- Topic: Some conjobs seem not working
- Replies: 8
- Views: 1206
Re: Some conjobs seem not working
The execution of the following line https://github.com/aimeos/ai-client-html/blob/2021.10/controller/jobs/src/Controller/Jobs/Customer/Email/Account/Standard.php#L135 throws this error: Missing required parameter for [Route: aimeos_shop_account] [URI: {locale}/profile] [Missing parameter: locale]. I...
- 08 Jul 2022, 16:32
- Forum: Laravel package
- Topic: Some conjobs seem not working
- Replies: 8
- Views: 1206
Re: Some conjobs seem not working
I'm on the 2021.10 version
- 07 Jul 2022, 20:56
- Forum: Laravel package
- Topic: Some conjobs seem not working
- Replies: 8
- Views: 1206
Some conjobs seem not working
Hello! Thanks for your help so far... I'm building a great e-commerce app thank to Aimeos. However, I'm dealing with some issues: 1- I set up the cronjob like explained in the doc and I actually get emails when customers make payments. But they don't receive the email containing their password when ...
- 07 Jul 2022, 09:11
- Forum: Laravel package
- Topic: Send order completed email without showing the confirmation page
- Replies: 2
- Views: 536
Re: Send order completed email without showing the confirmation page
Okay.. I understand.
- 05 Jul 2022, 23:34
- Forum: Laravel package
- Topic: Send order completed email without showing the confirmation page
- Replies: 2
- Views: 536
Send order completed email without showing the confirmation page
Hello! I'm dealing with a payment method that takes a while before contacting my webhook. I'd thus like to send the completed order email containing the order invoice in my webhook when the payment is captured. But I'm a little lost about how I can send the email directly in my controller. Any help?...
- 25 Jun 2022, 23:58
- Forum: Laravel package
- Topic: Customise Invoice's information
- Replies: 3
- Views: 5310
Re: Customise Invoice's information
client/html/templates/email/payment/pdf-body-standard.php should be customised
- 25 Jun 2022, 13:13
- Forum: Laravel package
- Topic: Customise Invoice's information
- Replies: 3
- Views: 5310
Customise Invoice's information
Hello!
I'm using Aimeos 2021.10 LTS and I'd like to know how to customise the information on the invoice send to the customer by email. I mean "Example company", "Example address", "12345 Example City",...
Thanks for your help!
I'm using Aimeos 2021.10 LTS and I'd like to know how to customise the information on the invoice send to the customer by email. I mean "Example company", "Example address", "12345 Example City",...
Thanks for your help!
- 29 May 2022, 00:22
- Forum: Laravel package
- Topic: Update the order status value
- Replies: 4
- Views: 805
Re: Update the order status value
Still trying to understand all of this like you but can you try this ?
I think it will work
I think it will work
Code: Select all
$s = \Aimeos\MShop::create( $this->context(), 'order' );
$order = \Aimeos\MShop::create( $this->context(), 'order' )->get(2);
$order->setStatusDelivery(2);
$s->save($order);