boolean_smtp_after_migration_import
Fires after a migration import from another plugin has finished.
action Tier B Since 1.0.0
Signature
add_action( 'boolean_smtp_after_migration_import', $callback, 10, 2 );Parameters
| Parameter | Type | Description |
|---|---|---|
$source | string | Migration source id. |
$result | array<string, mixed> | Import result, including success flag and any errors. |
Fires in
app/Services/Migration/MigrationScanner.php:435—BooleanSmtp\Services\Migration\MigrationScanner::finish()
Example
add_action( 'boolean_smtp_after_migration_import', function ( string $source, array $result ) { // React to the event.}, 10, 2 );Next steps
- Migration from other plugins — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.