Skip to content

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

ParameterTypeDescription
$sourcestringMigration source id.
$resultarray<string, mixed>Import result, including success flag and any errors.

Fires in

Example

boolean_smtp_after_migration_import.php
add_action( 'boolean_smtp_after_migration_import', function ( string $source, array $result ) {
// React to the event.
}, 10, 2 );

Next steps