Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

imap_undelete(3) [php man page]

IMAP_UNDELETE(3)							 1							  IMAP_UNDELETE(3)

imap_undelete - Unmark the message which is marked deleted

SYNOPSIS
bool imap_undelete (resource $imap_stream, int $msg_number, [int $flags]) DESCRIPTION
Removes the deletion flag for a specified message, which is set by imap_delete(3) or imap_mail_move(3). PARAMETERS
o $ imap_stream -An IMAP stream returned by imap_open(3). o $msg_number - The message number o $flags - RETURN VALUES
Returns TRUE on success or FALSE on failure. SEE ALSO
imap_delete(3), imap_mail_move(3). PHP Documentation Group IMAP_UNDELETE(3)

Check Out this Related Man Page

IMAP_FETCHSTRUCTURE(3)							 1						    IMAP_FETCHSTRUCTURE(3)

imap_fetchstructure - Read the structure of a particular message

SYNOPSIS
object imap_fetchstructure (resource $imap_stream, int $msg_number, [int $options]) DESCRIPTION
Fetches all the structured information for a given message. PARAMETERS
o $ imap_stream -An IMAP stream returned by imap_open(3). o $msg_number - The message number o $options - This optional parameter only has a single option, FT_UID, which tells the function to treat the $msg_number argument as a UID. RETURN VALUES
Returns an object includes the envelope, internal date, size, flags and body structure along with a similar object for each mime attach- ment. The structure of the returned objects is as follows: Returned Objects for imap_fetchstructure(3) +--------------+---------------------------------------------------+ | type | | | | | | | Primary body type | | | | | encoding | | | | | | | Body transfer encoding | | | | | ifsubtype | | | | | | | | | | TRUE if there is a subtype string | | | | | subtype | | | | | | | MIME subtype | | | | |ifdescription | | | | | | | | | | TRUE if there is a description string | | | | | description | | | | | | | Content description string | | | | | ifid | | | | | | | | | | TRUE if there is an identification string | | | | | id | | | | | | | Identification string | | | | | lines | | | | | | | Number of lines | | | | | bytes | | | | | | | Number of bytes | | | | |ifdisposition | | | | | | | | | | TRUE if there is a disposition string | | | | | disposition | | | | | | | Disposition string | | | | |ifdparameters | | | | | | | | | | TRUE if the $dparameters array exists | | | | | dparameters | | | | | | | An array of objects where each object has an | | | "attribute" and a "value" property corresponding | | | to the parameters on the Content-dispositionMIME | | | header. | | | | |ifparameters | | | | | | | | | | TRUE if the parameters array exists | | | | | parameters | | | | | | | An array of objects where each object has an | | | "attribute" and a "value" property. | | | | | parts | | | | | | | An array of objects identical in structure to the | | | top-level object, each of which corresponds to a | | | MIME body part. | | | | +--------------+---------------------------------------------------+ Primary body type (may vary with used library) +--+-------------+ |0 | | | | | | | text | | | | |1 | | | | | | | multipart | | | | |2 | | | | | | | message | | | | |3 | | | | | | | application | | | | |4 | | | | | | | audio | | | | |5 | | | | | | | image | | | | |6 | | | | | | | video | | | | |7 | | | | | | | other | | | | +--+-------------+ Transfer encodings (may vary with used library) +--+------------------+ |0 | | | | | | | 7BIT | | | | |1 | | | | | | | 8BIT | | | | |2 | | | | | | | BINARY | | | | |3 | | | | | | | BASE64 | | | | |4 | | | | | | | QUOTED-PRINTABLE | | | | |5 | | | | | | | OTHER | | | | +--+------------------+ SEE ALSO
imap_fetchbody(3), imap_bodystruct(3). PHP Documentation Group IMAP_FETCHSTRUCTURE(3)
Man Page