• Hello Stefano,

    this plugin stopped working on our site. I checked the WP crons and “mailer_send” was missing.

    Please put in a check whether it’s scheduled or not, something like this can be done in admin_init action:

    if ( !wp_next_scheduled( ‘mailer_send’ ) ) {
    wp_schedule_event(time() + 900, ‘mailer’, ‘mailer_send’);
    }

    Thanks,
    Martin

    https://wordpress.org/plugins/mailer/

The topic ‘Missing Cron’ is closed to new replies.