$atts['to'] ?? '', 'subject' => $atts['subject'] ?? '', 'html' => $atts['message'] ?? '', 'headers' => $atts['headers'] ?? [], 'attachments' => $atts['attachments'] ?? [], ]); // Return true to indicate success and prevent wp_mail from running return true; } /** * Temporarily disable async mail (for testing or critical emails). */ public static function disable() { self::$enabled = false; } /** * Re-enable async mail. */ public static function enable() { self::$enabled = true; } }