Search found 13 matches

by marnel
11 Jul 2022, 15:22
Forum: Laravel package
Topic: Some conjobs seem not working
Replies: 8
Views: 1518

Re: Some conjobs seem not working

Sure... I really appreciate your help.
Thank you, dear!!
by marnel
11 Jul 2022, 14:50
Forum: Laravel package
Topic: Some conjobs seem not working
Replies: 8
Views: 1518

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...
by marnel
11 Jul 2022, 01:06
Forum: Laravel package
Topic: Some conjobs seem not working
Replies: 8
Views: 1518

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...
by marnel
08 Jul 2022, 16:32
Forum: Laravel package
Topic: Some conjobs seem not working
Replies: 8
Views: 1518

Re: Some conjobs seem not working

I'm on the 2021.10 version
by marnel
07 Jul 2022, 20:56
Forum: Laravel package
Topic: Some conjobs seem not working
Replies: 8
Views: 1518

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 ...
by marnel
05 Jul 2022, 23:34
Forum: Laravel package
Topic: Send order completed email without showing the confirmation page
Replies: 2
Views: 654

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?...
by marnel
25 Jun 2022, 23:58
Forum: Laravel package
Topic: Customise Invoice's information
Replies: 3
Views: 6011

Re: Customise Invoice's information

client/html/templates/email/payment/pdf-body-standard.php should be customised
by marnel
25 Jun 2022, 13:13
Forum: Laravel package
Topic: Customise Invoice's information
Replies: 3
Views: 6011

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!
by marnel
29 May 2022, 00:22
Forum: Laravel package
Topic: Update the order status value
Replies: 4
Views: 976

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

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);