PHPMailer\PHPMailer

PHPMailer::getAllRecipientAddresses()publicWP 1.0

Allows for public read access to 'all_recipients' property. Before the send() call, queued addresses (i.e. with IDN) are not yet included.

Method of the class: PHPMailer{}

No Hooks.

Return

Array.

Usage

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

PHPMailer::getAllRecipientAddresses() code WP 6.5.2

public function getAllRecipientAddresses()
{
    return $this->all_recipients;
}