PHPMailer\PHPMailer

SMTP::getLastReply()publicWP 1.0

Get the last reply from the server.

Method of the class: SMTP{}

No Hooks.

Return

String.

Usage

$SMTP = new SMTP();
$SMTP->getLastReply();

SMTP::getLastReply() code WP 6.5.2

public function getLastReply()
{
    return $this->last_reply;
}