PHPMailer\PHPMailer

SMTP::getLastReply()publicWP 1.0

Get the last reply from the server.

Метод класса: SMTP{}

Хуков нет.

Возвращает

Строку.

Использование

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

Код SMTP::getLastReply() WP 6.5.2

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