SYNOPSISvarchar mimeEntityGetRawBody(mimeEntity entityOrReader)
Parameters:
entityOrReader
- A mimeEntity
or
mimeReader
object
Returns:
varchar
raw (original encoded) body of entity
DESCRIPTION
The mimeEntityGetRawBody
function returns the varchar
raw - i.e. original encoded - body of the entity. This can be
used for debugging purposes, e.g. analyzing the structure of a
message.
EXAMPLE<$ret = (mimeEntityGetRawBody($reader))>
CAVEATS
Any transfer encodings applied to the body will not be removed;
typically mimeEntityGetBody
(here)
should be used instead, as it decodes the body.
SEE ALSOmimeEntityGetBody