PHPMailer\PHPMailer

PHPMailer::getAttachments()publicWP 1.0

Return the array of attachments.

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

Хуков нет.

Возвращает

Массив.

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

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

Код PHPMailer::getAttachments() WP 6.5.2

public function getAttachments()
{
    return $this->attachment;
}