PHPMailer\PHPMailer
SMTP::reset()
Send an SMTP RSET command. Abort any transaction that is currently in progress. Implements RFC 821: RSET <CRLF>.
Method of the class: SMTP{}
No Hooks.
Return
true|false
. True on success
Usage
$SMTP = new SMTP(); $SMTP->reset();
SMTP::reset() SMTP::reset code WP 6.6.1
public function reset() { return $this->sendCommand('RSET', 'RSET', 250); }