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.
Returns
true|false. True on success
Usage
$SMTP = new SMTP(); $SMTP->reset();
SMTP::reset() SMTP::reset code WP 7.0
public function reset()
{
return $this->sendCommand('RSET', 'RSET', 250);
}