Magento 1.9.1.0 Order confirmation not sent

I can’t find the right solution for sending order confirmation letters. Email invoices are sent after the purchase is completed. The only problem is that order confirmation is not sent.

In my database, I see that the order email address is in the queue (core_email_queue). Processed_at is NULL.

I checked a cronjob with a direct admin and I can call a script that will send me a random email so that it works.

Despite all this, I see that no beating tasks were found in AOE_Scheduler.

Any ideas? He worked before and suddenly stopped working

+4
source share
1 answer

I was able to solve my problem. I changed the cronjob tasks in direct administration, as suggested by the module.

The configuration is as follows (remember that AOE_Scheduler must be installed:

* * * * * / bin / bash path_to_root_site / public_html / scheduler_cron.sh --mode always
* * * * * / bin / bash path_to_root_site / public_html / scheduler_cron.sh --mode default

+3
source

Source: https://habr.com/ru/post/1618441/


All Articles