PHPMailer\PHPMailer
PHPMailer::endBoundary
Return the end of a message boundary.
Method of the class: PHPMailer{}
No Hooks.
Returns
String.
Usage
// protected - for code of main (parent) or child class $result = $this->endBoundary( $boundary );
- $boundary(string) (required)
- .
PHPMailer::endBoundary() PHPMailer::endBoundary code WP 6.9.1
protected function endBoundary($boundary)
{
return static::$LE . '--' . $boundary . '--' . static::$LE;
}