PHPMailer\PHPMailer
SMTP::setVerp()
Enable or disable VERP address generation.
{} It's a method of the class: SMTP{}
No Hooks.
Return
null
. Nothing.
Usage
$SMTP = new SMTP(); $SMTP->setVerp( $enabled );
- $enabled(true|false)
- -
Default: false
Code of SMTP::setVerp() SMTP::setVerp WP 6.0
public function setVerp($enabled = false) { $this->do_verp = $enabled; }