boolean_smtp_process_queue
Fires every minute while the email queue is enabled; each run sends one batch of queued messages.
action (WP-Cron) Tier B Since 1.0.0
Scheduled by the plugin when the queue setting is on and cleared on deactivation. Attach a listener to run work in the same WP-Cron slot, or use `wp boolean-smtp queue:work` to process the queue from the command line instead.
Signature
add_action( 'boolean_smtp_process_queue', $callback, 10, 0 );Parameters
No parameters.
Fires in
app/Jobs/ProcessQueueJob.php:0—BooleanSmtp\Jobs\ProcessQueueJob::()
Example
add_action( 'boolean_smtp_process_queue', function () { // React to the event.}, 10, 1 );Next steps
- Delivery lifecycle — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.