mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-04 12:30:04 +01:00
function to allow to access/read the boundarys used by CreateHeader
This commit is contained in:
parent
01350cee0b
commit
9dae1bdbe0
@ -1279,6 +1279,17 @@ class PHPMailer {
|
|||||||
return $body;
|
return $body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the specified message boundary.
|
||||||
|
* boundary is set only after CreateHeader was called
|
||||||
|
* @params integer the boundary to fetch
|
||||||
|
* @returns string/boolean - the boundary or false if not set (yet)
|
||||||
|
*/
|
||||||
|
public function FetchBoundary($num)
|
||||||
|
{
|
||||||
|
return isset($this->boundary[$num])? $this->boundary[$num]: false;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the start of a message boundary.
|
* Returns the start of a message boundary.
|
||||||
* @access private
|
* @access private
|
||||||
|
Loading…
Reference in New Issue
Block a user