Mail_IMAPv2
[ class tree: Mail_IMAPv2 ] [ index: Mail_IMAPv2 ] [ all elements ]

Element index for package Mail_IMAPv2

[ a ] [ c ] [ d ] [ e ] [ f ] [ g ] [ h ] [ i ] [ m ] [ o ] [ s ] [ u ] [ _ ]

_

_checkIfParsed
in file IMAPv2.php, method Mail_IMAPv2::_checkIfParsed()
    Checks if the part has been parsed, if not calls on _declareParts to parse the message.
_declareParts
in file IMAPv2.php, method Mail_IMAPv2::_declareParts()
    Gather message information returned by imap_fetchstructure and recursively iterate
top

a

alerts
in file IMAPv2.php, method Mail_IMAPv2::alerts()
    Wrapper function for imap_alerts. Implodes the array returned by imap_alerts, (if any) and returns the text.
top

c

close
in file IMAPv2.php, method Mail_IMAPv2::close()
    Wrapper method for imap_close. Close the IMAP resource stream.
connect
in file IMAPv2.php, method Mail_IMAPv2::connect()
    Wrapper method for imap_open. Accepts a URI abstraction in the following format: imap://user:pass@mail.example.com:143/INBOX#notls instead of the standard connection arguments used in imap_open.
convertBytes
in file IMAPv2.php, method Mail_IMAPv2::convertBytes()
    Converts an integer containing the number of bytes in a file to one of Bytes, Kilobytes, Megabytes, or Gigabytes, appending the unit of measurement.
top

d

debug
in file Debug.php, method Mail_IMAPv2_Debug::debug()
    Dumps various information about a message for debugging. Specify $_GET variables to view information.
delete
in file IMAPv2.php, method Mail_IMAPv2::delete()
    Wrapper function for imap_delete. Sets the marked for deletion flag. Note: POP3 mailboxes do not remember flag settings between connections, for POP3 mailboxes this function should be used in addtion to expunge.
dump
in file Debug.php, method Mail_IMAPv2_Debug::dump()
    Calls on var_dump and outputs with HTML
Debug.php
procedural page Debug.php
top

e

$error
in file IMAPv2.php, variable Mail_IMAPv2::$error
    Contains an instance of the PEAR_ErrorStack object.
errors
in file IMAPv2.php, method Mail_IMAPv2::errors()
    Wrapper function for imap_errors. Implodes the array returned by imap_errors, (if any) and returns the error text.
errorTemplate
in file IMAPv2.php, method Mail_IMAPv2::errorTemplate()
expunge
in file IMAPv2.php, method Mail_IMAPv2::expunge()
    Wrapper function for imap_expunge. Expunges messages marked for deletion.
extractMIME
in file IMAPv2.php, method Mail_IMAPv2::extractMIME()
    Searches all message parts for the specified MIME type. Use getBody with $action option Mail_IMAPv2_LITERAL_DECODE to view MIME type parts retrieved.
top

f

$fields
in file IMAPv2.php, variable Mail_IMAPv2::$fields
    (string) Contains the fields searched for and added to inline and attachment part arrays. These are the 'in' and 'at' associative indices of the $msg member variable.
top

g

getBody
in file IMAPv2.php, method Mail_IMAPv2::getBody()
    Searches parts array set in $this->_declareParts() for a displayable message.
getHeaders
in file IMAPv2.php, method Mail_IMAPv2::getHeaders()
    Set member variable containing header information. Creates an array containing associative indices referring to various header information. Use http://www.php.net/var_dump or http://www.php.net/print_r on the $header member variable to view information gathered by this function.
getMailboxes
in file IMAPv2.php, method Mail_IMAPv2::getMailboxes()
    Wrapper method for imap_list. Calling on this function will return a list of mailboxes.
getMailboxInfo
in file IMAPv2.php, method Mail_IMAPv2::getMailboxInfo()
getParts
in file IMAPv2.php, method Mail_IMAPv2::getParts()
    sets up member variables containing inline parts and attachments for a specific
getQuota
in file IMAPv2.php, method Mail_IMAPv2::getQuota()
    Retreives information about the current mailbox's quota. Rounds up quota sizes and appends the unit of measurment. Returns information in a multi-dimensional associative array.
getRawHeaders
in file IMAPv2.php, method Mail_IMAPv2::getRawHeaders()
    Set member variable $rawHeaders to contain Raw Header information for a part. Returns default header part id on success, returns false on failure.
getRawMessage
in file IMAPv2.php, method Mail_IMAPv2::getRawMessage()
    Returns entire unparsed message body. See imap_body for options.
getRelatedParts
in file IMAPv2.php, method Mail_IMAPv2::getRelatedParts()
    Looks to see if this part has any inline parts associated with it.
top

h

$header
in file IMAPv2.php, variable Mail_IMAPv2::$header
    (array)(mixed) Associative array containing information gathered by imap_headerinfo or imap_rfc822_parse_headers.
top

i

importMail
in file ManageMB.php, method Mail_IMAPv2_ManageMB::importMail()
    This method provides the functionality to import MIME messages into the server using the imap_append method.
IMAPv2.php
procedural page IMAPv2.php
top

m

$mailbox
in file IMAPv2.php, variable Mail_IMAPv2::$mailbox
    Contains the imap resource stream.
$mailboxInfo
in file IMAPv2.php, variable Mail_IMAPv2::$mailboxInfo
    Contains information about the current mailbox.
$msg
in file IMAPv2.php, variable Mail_IMAPv2::$msg
    Contains various information about a message, separates inline parts from attachments and contains the default part id for each message.
Mail_IMAPv2
in file IMAPv2.php, method Mail_IMAPv2::Mail_IMAPv2()
    Constructor. Optionally set the IMAP resource stream.
Mail_IMAPv2
in file IMAPv2.php, class Mail_IMAPv2
    Mail_IMAPv2 provides a flexible API for connecting to and retrieving mail from mailboxes using the IMAP, POP3 or NNTP mail protocols.
ManageMB.php
procedural page ManageMB.php
Mail_IMAPv2_BODY
in file IMAPv2.php, constant Mail_IMAPv2_BODY
Mail_IMAPv2_Debug
in file Debug.php, class Mail_IMAPv2_Debug
    This class provides an extension to Mail_IMAPv2 that adds debugging utilities for the base IMAP.php class. The debugging functionality provided by this class is currently accessed by supplying various $_GET method arguments.
Mail_IMAPv2_Debug
in file Debug.php, method Mail_IMAPv2_Debug::Mail_IMAPv2_Debug()
Mail_IMAPv2_ERROR
in file IMAPv2.php, constant Mail_IMAPv2_ERROR
Mail_IMAPv2_ERROR_ARGUMENT_REQUIRES_ARRAY
in file IMAPv2.php, constant Mail_IMAPv2_ERROR_ARGUMENT_REQUIRES_ARRAY
Mail_IMAPv2_ERROR_INVALID_ACTION
in file IMAPv2.php, constant Mail_IMAPv2_ERROR_INVALID_ACTION
Mail_IMAPv2_ERROR_INVALID_OPTION
in file IMAPv2.php, constant Mail_IMAPv2_ERROR_INVALID_OPTION
Mail_IMAPv2_ERROR_INVALID_PID
in file IMAPv2.php, constant Mail_IMAPv2_ERROR_INVALID_PID
Mail_IMAPv2_FATAL
in file IMAPv2.php, constant Mail_IMAPv2_FATAL
Mail_IMAPv2_LITERAL
in file IMAPv2.php, constant Mail_IMAPv2_LITERAL
Mail_IMAPv2_LITERAL_DECODE
in file IMAPv2.php, constant Mail_IMAPv2_LITERAL_DECODE
Mail_IMAPv2_ManageMB
in file ManageMB.php, class Mail_IMAPv2_ManageMB
    This class provides an extension to Mail_IMAPv2 that adds mailbox management
Mail_IMAPv2_ManageMB
in file ManageMB.php, method Mail_IMAPv2_ManageMB::Mail_IMAPv2_ManageMB()
Mail_IMAPv2_NOTICE
in file IMAPv2.php, constant Mail_IMAPv2_NOTICE
Mail_IMAPv2_NOTICE_FALLBACK_PID
in file IMAPv2.php, constant Mail_IMAPv2_NOTICE_FALLBACK_PID
manageMail
in file ManageMB.php, method Mail_IMAPv2_ManageMB::manageMail()
    This method manages the mail inside of a mailbox and allows mail to be copied or moved from the mailbox that the user is connected to to the specified mailbox.
manageMB
in file ManageMB.php, method Mail_IMAPv2_ManageMB::manageMB()
    This method creates, renames and deletes mailboxes from the server.
messageCount
in file IMAPv2.php, method Mail_IMAPv2::messageCount()
    Wrapper method for imap_num_msg.
top

o

$option
in file IMAPv2.php, variable Mail_IMAPv2::$option
    Set flags for various imap_* functions.
top

s

$structure
in file IMAPv2.php, variable Mail_IMAPv2::$structure
    Contains various information returned by imap_fetchstructure.
setFlags
in file IMAPv2.php, method Mail_IMAPv2::setFlags()
    Wrapper function for imap_setflag_full. Sets various message flags.
setOptions
in file IMAPv2.php, method Mail_IMAPv2::setOptions()
    Set the $option member variable, which is used to specify optional imap_* function arguments (labeled in the manual as flags or options e.g. FT_UID, OP_READONLY, etc).
top

u

unsetHeaders
in file IMAPv2.php, method Mail_IMAPv2::unsetHeaders()
    Destroys variables set by getHeaders.
unsetParts
in file IMAPv2.php, method Mail_IMAPv2::unsetParts()
    Destroys variables set by getParts and _declareParts.
top

Documentation generated on Mon, 11 Mar 2019 15:40:08 -0400 by phpDocumentor 1.4.4. PEAR Logo Copyright © PHP Group 2004.