PHPMailer\PHPMailer

PHPMailer::endBoundary()protectedWP 1.0

Return the end of a message boundary.

Method of the class: PHPMailer{}

No Hooks.

Return

String.

Usage

// protected - for code of main (parent) or child class
$result = $this->endBoundary( $boundary );
$boundary(string) (required)
-

PHPMailer::endBoundary() code WP 6.4.3

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