PHPMailer\PHPMailer

PHPMailer::getCustomHeaders()publicWP 1.0

Returns all custom headers.

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

Хуков нет.

Возвращает

Массив.

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

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

Код PHPMailer::getCustomHeaders() WP 6.5.2

public function getCustomHeaders()
{
    return $this->CustomHeader;
}