Skip to content

boolean_smtp_email_log_deleted

Fires after an email log entry has been deleted.

action Tier B Since 1.0.0

Signature

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

Parameters

ParameterTypeDescription
$payloadarray<string, mixed>Deleted email log identifier: id.

Fires in

Example

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

Next steps