Jyxo\Mail\Sender\Smtp::commandRset PHP Method

commandRset() private method

Sends the RSET command.
private commandRset ( )
    private function commandRset()
    {
        $this->writeData('RSET');
        $response = $this->readData();
        if ('250' !== substr($response, 0, 3)) {
            throw new SmtpException('RSET: ' . $response);
        }
    }