• Hello, so after price drops, the email is not sent but it shows status “queued to send”. I thought u use cron to sent the mails but i dont see any cron event from u in my events. We also your real-time cron instead of WP cron, so maybe thats the problem? Thanks for your help.

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author maxidevs

    (@maxidevs)

    Hello. Our plugin does not use WP CRON to send emails. Instead, the plugin uses a slightly adapted version of the class that WOOCOMMERCE uses to send transactional emails in the background using ajax. Are you testing the plugin on a live site?

    Thread Starter kodkodak

    (@kodkodak)

    Plugin Author maxidevs

    (@maxidevs)

    Can you try adding the following code to the functions.php of your child theme:

    add_action( 'shutdown', function() {
        if ( function_exists( 'MDWCPT' ) && MDWCPT()->get( 'emailer' ) ) {
            MDWCPT()->get( 'emailer' )->maybe_launch();
        }
    });

    And then check if the status changed to “Sent”.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Queued to sent’ is closed to new replies.