boolean_smtp_mail_intake
Fires when a message enters the BooleanSMTP mail pipeline, before validation runs.
action Tier A Since 1.0.0
Signature
add_action( 'boolean_smtp_mail_intake', $callback, 10, 1 );Parameters
| Parameter | Type | Description |
|---|---|---|
$atts | array<string, mixed> | wp_mail-style arguments as received by the pipeline. |
Fires in
app/Services/Mailer/BooleanSmtpMailPipeline.php:77—BooleanSmtp\Services\Mailer\BooleanSmtpMailPipeline::send()
Example
add_action( 'boolean_smtp_mail_intake', function ( array $atts ) { // React to the event.}, 10, 1 );Next steps
- Mail pipeline — every hook in this area, in firing order where that applies.
- Hook Explorer — filter and search every hook.