PHPMailer\PHPMailer

PHPMailer::endBoundary()protectedWP 1.0

Return the end of a message boundary.

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

Хуков нет.

Возвращает

Строку.

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

// protected - в коде основоного (родительского) или дочернего класса
$result = $this->endBoundary( $boundary );
$boundary(строка) (обязательный)
-

Код PHPMailer::endBoundary() WP 6.5.2

protected function endBoundary($boundary)
{
    return static::$LE . '--' . $boundary . '--' . static::$LE;
}