PHP.nl

mailparse_msg_extract_part_file

mailparse_msg_extract_part_file

Extracts/decodes a message section

string **mailparse_msg_extract_part_file** resource $mimemail mixed $filename callable $callbackfunc

Extracts/decodes a message section from the supplied filename.

The contents of the section will be decoded according to their transfer encoding - base64, quoted-printable and uuencoded text are supported.

mimemail A valid resource, created with . MIME``mailparse_msg_create

filenameCan be a file name or a valid stream resource.

callbackfuncIf set, this must be either a valid callback that will be passed the extracted section, or null to make this function return the extracted section.

If not specified, the contents will be sent to "stdout".

If is not null returns true on success. callbackfunc

If is set to null, returns the extracted section as a string. callbackfunc

Returns false on error.

mailparse_msg_extract_part``mailparse_msg_extract_whole_part_file