Documentation TYPO3 par Ameos

t3lib_readmail Class Reference

List of all members.

Public Member Functions

 getMessage ($mailParts)
 getTextContent ($content)
 getMailBoundaryParts ($boundary, $content)
 getCType ($str)
 analyseReturnError ($c)
 decodeHeaderString ($str)
 extractNameEmail ($str)
 getContentTypeData ($contentTypeStr)
 makeUnixDate ($dateStr)
 getGMToffset ($GMT)
 extractMailHeader ($content, $limit=0)
 fullParse ($content)

Public Attributes

 $dateAbbrevs
 $serverGMToffsetMinutes = 60

Detailed Description

Definition at line 83 of file class.t3lib_readmail.php.


Member Function Documentation

t3lib_readmail::getMessage ( mailParts  ) 

Returns the text content of a mail which has previously been parsed by eg. extractMailHeader() Probably obsolete since the function fullParse() is more advanced and safer to use.

Parameters:
array Output from extractMailHeader()
Returns:
string The content.

Definition at line 113 of file class.t3lib_readmail.php.

References getCType(), getMailBoundaryParts(), and getTextContent().

t3lib_readmail::getTextContent ( content  ) 

Returns the body part of a raw mail message (including headers) Probably obsolete since the function fullParse() is more advanced and safer to use.

Parameters:
string Raw mail content
Returns:
string Body of message

Definition at line 138 of file class.t3lib_readmail.php.

References extractMailHeader().

Referenced by getMessage().

t3lib_readmail::getMailBoundaryParts ( boundary,
content 
)

Splits the body of a mail into parts based on the boundary string given. Obsolete, use fullParse()

Parameters:
string Boundary string used to split the content.
string BODY section of a mail
Returns:
array Parts of the mail based on this

Definition at line 153 of file class.t3lib_readmail.php.

Referenced by getMessage().

t3lib_readmail::getCType ( str  ) 

Returns Content Type plus more. Obsolete, use fullParse()

Parameters:
string "ContentType" string with more
Returns:
array parts in key/value pairs

Definition at line 173 of file class.t3lib_readmail.php.

Referenced by getMessage().

t3lib_readmail::analyseReturnError ( c  ) 

Analyses the return-mail content for the Dmailer module - used to find what reason there was for rejecting the mail Used by the Dmailer, but not exclusively.

Parameters:
string message body/text
Returns:
array key/value pairs with analysis result. Eg. "reason", "content", "reason_text", "mailserver" etc.

Definition at line 196 of file class.t3lib_readmail.php.

t3lib_readmail::decodeHeaderString ( str  ) 

Decodes a header-string with the =?....?= syntax including base64/quoted-printable encoding.

Parameters:
string A string (encoded or not) from a mail header, like sender name etc.
Returns:
string The input string, but with the parts in =?....?= decoded.

Definition at line 251 of file class.t3lib_readmail.php.

t3lib_readmail::extractNameEmail ( str  ) 

Extracts name/email parts from a header field (like 'To:' or 'From:' with name/email mixed up.

Parameters:
string Value from a header field containing name/email values.
Returns:
array Array with the name and email in. Email is validated, otherwise not set.

Definition at line 279 of file class.t3lib_readmail.php.

References t3lib_div::validEmail().

t3lib_readmail::getContentTypeData ( contentTypeStr  ) 

Returns the data from the 'content-type' field. That is the boundary, charset and mime-type

Parameters:
string "Content-type-string"
Returns:
array key/value pairs with the result.

Definition at line 308 of file class.t3lib_readmail.php.

t3lib_readmail::makeUnixDate ( dateStr  ) 

Makes a UNIX-date based on the timestamp in the 'Date' header field.

Parameters:
string String with a timestamp according to email standards.
Returns:
integer The timestamp converted to unix-time in seconds and compensated for GMT/CET ($this->serverGMToffsetMinutes);

Definition at line 331 of file class.t3lib_readmail.php.

t3lib_readmail::getGMToffset ( GMT  ) 

Parsing the GMT offset value from a mail timestamp.

Parameters:
string A string like "+0100" or so.
Returns:
integer Minutes to offset the timestamp private

Definition at line 354 of file class.t3lib_readmail.php.

t3lib_readmail::extractMailHeader ( content,
limit = 0 
)

This returns the mail header items in an array with associative keys and the mail body part in another CONTENT field

Parameters:
string Raw mail content
integer A safety limit that will put a upper length to how many header chars will be processed. Set to zero means that there is no limit. (Uses a simple substr() to limit the amount of mail data to process to avoid run-away)
Returns:
array An array where each key/value pair is a header-key/value pair. The mail BODY is returned in the key 'CONTENT' if $limit is not set!

Definition at line 368 of file class.t3lib_readmail.php.

Referenced by getTextContent().

t3lib_readmail::fullParse ( content  ) 

The extended version of the extractMailHeader() which will also parse all the content body into an array and further process the header fields and decode content etc. Returns every part of the mail ready to go.

Parameters:
string Raw email input.
Returns:
array Multidimensional array with all parts of the message organized nicely. Use t3lib_div::debug() to analyse it visually.

Definition at line 399 of file class.t3lib_readmail.php.


Member Data Documentation

t3lib_readmail::$dateAbbrevs

Initial value:

 array(
                'JAN' => 1,
                'FEB' => 2,
                'MAR' => 3,
                'APR' => 4,
                'MAY' => 5,
                'JUN' => 6,
                'JUL' => 7,
                'AUG' => 8,
                'SEP' => 9,
                'OCT' => 10,
                'NOV' => 11,
                'DEC' => 12
        )

Definition at line 84 of file class.t3lib_readmail.php.


The documentation for this class was generated from the following file:


Généré par L'expert TYPO3 avec  doxygen 1.4.6