PHPMailer\PHPMailer

SMTP::setVerp()publicWP 1.0

Enable or disable VERP address generation.

Method of the class: SMTP{}

No Hooks.

Return

null. Nothing (null).

Usage

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

SMTP::setVerp() code WP 6.5.2

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