PHPMailer\PHPMailer
PHPMailer::getAllRecipientAddresses
Allows for public read access to 'all_recipients' property. Before the send() call, queued addresses (i.e. with IDN) are not yet included.
Метод класса: PHPMailer{}
Хуков нет.
Возвращает
Массив.
Использование
$PHPMailer = new PHPMailer(); $PHPMailer->getAllRecipientAddresses();
Код PHPMailer::getAllRecipientAddresses() PHPMailer::getAllRecipientAddresses WP 6.9.4
public function getAllRecipientAddresses()
{
return $this->all_recipients;
}