PHPMailer\PHPMailer

PHPMailer::getAttachments()publicWP 1.0

Return the array of attachments.

Method of the class: PHPMailer{}

No Hooks.

Return

Array.

Usage

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

PHPMailer::getAttachments() code WP 6.5.2

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