boolean_smtp_email_logged
Fires after an email log entry has been created.
action Tier B Since 1.0.0
Signature
add_action( 'boolean_smtp_email_logged', $callback, 10, 1 );Parameters
| Parameter | Type | Description |
|---|---|---|
$payload | array<string, mixed> | Email log summary: id, to, subject and status. |
Fires in
app/Observers/EmailLogObserver.php:104—BooleanSmtp\Observers\EmailLogObserver::created()
Example
add_action( 'boolean_smtp_email_logged', function ( array $payload ) { // React to the event.}, 10, 1 );Next steps
- Delivery lifecycle — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.