Skip to content

boolean_smtp_connection_deleted

Fires after a connection has been deleted.

action Tier A Since 1.0.0

Signature

add_action( 'boolean_smtp_connection_deleted', $callback, 10, 1 );

Parameters

ParameterTypeDescription
$payloadarray<string, mixed>
  idintId of the deleted connection.
  timestampintUnix timestamp of the deletion.

Fires in

Example

boolean_smtp_connection_deleted.php
add_action( 'boolean_smtp_connection_deleted', function ( array $payload ) {
// React to the event.
}, 10, 1 );

Next steps