PHPMailer\PHPMailer

SMTP::setVerppublicWP 1.0

Enable or disable VERP address generation.

Method of the class: SMTP{}

No Hooks.

Returns

null. Nothing (null).

Usage

$SMTP = new SMTP();
$SMTP->setVerp( $enabled );
$enabled(true|false)
.
Default: false

SMTP::setVerp() code WP 6.8.1

public function setVerp($enabled = false)
{
    $this->do_verp = $enabled;
}