PHPMailer\PHPMailer
PHPMailer::endBoundary()
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() PHPMailer::endBoundary code WP 6.4.1
protected function endBoundary($boundary) { return static::$LE . '--' . $boundary . '--' . static::$LE; }