imap_clearflag_full

(PHP 4, PHP 5, PHP 7) Clears flags on messages bool imap_clearflag_full ( resource $imap_stream, string $sequence, string $flag [, int $options = 0 ] ) This function causes a store to delete the specified flag to the flags set for the messages in the specified sequence. Parameters: imap_stream An IMAP stream returned by imap_open(). sequence

imap_check

(PHP 4, PHP 5, PHP 7) Check current mailbox object imap_check ( resource $imap_stream ) Checks information about the current mailbox. Parameters: imap_stream An IMAP stream returned by imap_open(). Returns: Returns the information in an object with following properties: Date - current system time formatted according to » RFC2822 Driver - pro

imap_bodystruct

(PHP 4, PHP 5, PHP 7) Read the structure of a specified body section of a specific message object imap_bodystruct ( resource $imap_stream, int $msg_number, string $section ) Read the structure of a specified body section of a specific message. Parameters: imap_stream An IMAP stream returned by imap_open(). msg_number The message number

imap_body

(PHP 4, PHP 5, PHP 7) Read the message body string imap_body ( resource $imap_stream, int $msg_number [, int $options = 0 ] ) imap_body() returns the body of the message, numbered msg_number in the current mailbox. imap_body() will only return a verbatim copy of the message body. To extract single parts of a multipart MIME-encoded message you have to use imap_fetchstructure() to analyze its structure and imap_fetchbody()

imap_binary

(PHP 4, PHP 5, PHP 7) Convert an 8bit string to a base64 string string imap_binary ( string $string ) Convert an 8bit string to a base64 string according to » RFC2045, Section 6.8. Parameters: string The 8bit string Returns: Returns a base64 encoded string. See also:

imap_base64

(PHP 4, PHP 5, PHP 7) Decode BASE64 encoded text string imap_base64 ( string $text ) Decodes the given BASE-64 encoded text. Parameters: text The encoded text Returns: Returns the decoded message as a string. See also: imap_binary() -

imap_append

(PHP 4, PHP 5, PHP 7) Append a string message to a specified mailbox bool imap_append ( resource $imap_stream, string $mailbox, string $message [, string $options = NULL [, string $internal_date = NULL ]] ) Appends a string message to the specified mailbox. Parameters: imap_stream An IMAP stream returned by imap_open(). mailbox The mail

imap_alerts

(PHP 4, PHP 5, PHP 7) Returns all IMAP alert messages that have occurred array imap_alerts ( void ) Returns all of the IMAP alert messages generated since the last imap_alerts() call, or the beginning of the page. When imap_alerts() is called, the alert stack is subsequently cleared. The IMAP specification requires that these messages be passed to the user. Returns: Returns an array of all of th

imap_8bit

(PHP 4, PHP 5, PHP 7) Convert an 8bit string to a quoted-printable string string imap_8bit ( string $string ) Convert an 8bit string to a quoted-printable string (according to » RFC2045, section 6.7). Parameters: string The 8bit string to convert Returns: Returns a quoted-printable string.

cyrus_unbind

(PHP 4 >= 4.1.0, PECL cyrus 1.0) Unbind ... bool cyrus_unbind ( resource $connection, string $trigger_name ) Parameters: connection The connection handle. trigger_name The trigger name. Returns: Returns TRUE on success or FALSE on failure. This function is currently not doc