PHPMailer\PHPMailer\PHPMailer::endBoundary PHP Метод

endBoundary() защищенный метод

Return the end of a message boundary.
protected endBoundary ( string $boundary ) : string
$boundary string
Результат string
    protected function endBoundary($boundary)
    {
        return $this->LE . '--' . $boundary . '--' . $this->LE;
    }