boolean_smtp_pro_register_providers
Fires during plugin boot so the Pro addon can register its service providers.
action Tier A Since 1.0.0
The free plugin never contains Pro logic; this is the extension point the Pro addon hooks into to attach its own bindings, routes, and admin UI.
Signature
add_action( 'boolean_smtp_pro_register_providers', $callback, 10, 1 );Parameters
| Parameter | Type | Description |
|---|---|---|
$app | \BooleanSmtp\Core\Container\Application | The application container. |
Fires in
app/Providers/AppServiceProvider.php:599—BooleanSmtp\Providers\AppServiceProvider::registerProExtensionPoints()
Example
add_action( 'boolean_smtp_pro_register_providers', function ( \BooleanSmtp\Core\Container\Application $app ) { // React to the event.}, 10, 1 );Next steps
- Admin UI and REST API — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.