PHPMailer\PHPMailer
PHPMailer::getLastMessageID()
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() PHPMailer::getLastMessageID WP 6.3.1
public function getLastMessageID() { return $this->lastMessageID; }