PHPMailer\PHPMailer

PHPMailer::getLastMessageID()publicWP 1.0

Return the Message-ID header of the last email. Technically this is the value from the last time the headers were created, but it's also the message ID of the last sent message except in pathological cases.

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

Хуков нет.

Возвращает

Строку.

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

$PHPMailer = new PHPMailer();
$PHPMailer->getLastMessageID();

Код PHPMailer::getLastMessageID() WP 6.4.3

public function getLastMessageID()
{
    return $this->lastMessageID;
}