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