PHPMailer\PHPMailer\PHPMailer::endBoundary PHP Method

endBoundary() protected method

Return the end of a message boundary.
protected endBoundary ( string $boundary ) : string
$boundary string
return string
    protected function endBoundary($boundary)
    {
        return $this->LE . '--' . $boundary . '--' . $this->LE;
    }