PHPMailer\PHPMailer
PHPMailer::getBoundaries()
Get the boundaries that this message will use
Метод класса: PHPMailer{}
Хуков нет.
Возвращает
Массив
.
Использование
$PHPMailer = new PHPMailer(); $PHPMailer->getBoundaries();
Код PHPMailer::getBoundaries() PHPMailer::getBoundaries WP 6.6.2
public function getBoundaries() { if (empty($this->boundary)) { $this->setBoundaries(); } return $this->boundary; }