| ILIAS
    Release_4_3_x_branch Revision 61807
    | 
internal PHP-mail() implementation of the PEAR Mail:: interface. More...
internal PHP-mail() implementation of the PEAR Mail:: interface.
SMTP MX implementation of the PEAR Mail interface.
SMTP implementation of the PEAR Mail interface.
Sendmail implementation of the PEAR Mail:: interface.
RFC 822 Email address list validation Utility.
Null implementation of the PEAR Mail:: interface.
Mock implementation of the PEAR Mail:: interface for testing.
Chuck Hagenbuch chuck@horde.org 2010 Chuck Hagenbuch http://opensource.org/licenses/bsd-license.php New BSD License CVS: http://pear.php.net/package/Mail/ public Phil Kernick philk@rotfl.com.au 2010 Phil Kernick http://opensource.org/licenses/bsd-license.php New BSD License CVS: http://pear.php.net/package/Mail/ Richard Heyes richard@phpguru.org Chuck Hagenbuch <chuck@horde.org 2001-2010 Richard Heyes http://opensource.org/licenses/bsd-license.php New BSD License CVS: http://pear.php.net/package/Mail/ What is it? This class will take an address string, and parse it into it's consituent parts, be that either addresses, groups, or combinations. Nested groups are not supported. The structure it returns is pretty straight forward, and is similar to that provided by the imap_rfc822_parse_adrlist(). Use print_r() to view the structure. How do I use it? $address_string = 'My Group: "Richard" <richard> (A comment), ted@example.com (Ted Bloggs), Barney;'; $structure = Mail_RFC822::parseAddressList($address_string, 'example.com', true) print_r($structure); Richard Heyes richard@phpguru.org Chuck Hagenbuch chuck@horde.org BSD public Requires the Net_SMTP class. public Requires the Net_SMTP class. public gERD Schaufelberger gerd@php-tools.net Chuck Hagenbuch chuck@horde.org 1997-2010 Chuck Hagenbuch http://opensource.org/licenses/bsd-license.php New BSD License CVS: http://pear.php.net/package/Mail/ Defines the interface for implementing mailers under the PEAR hierarchy, and provides supporting functions useful in multiple mailer backends. public