Home > PHP > Function > Mailparse > mailparse_rfc822_parse_addresses()

mailparse_rfc822_parse_addresses()

mailparse_rfc822_parse_addresses - Parse RFC 822 compliant addresses

Syntax

array mailparse_rfc822_parse_addresses (string $addresses)

Arguments

  • addresses - A string containing addresses, like in: Wez Furlong <wez@example.com>, doe@example.com Note: This string must not include the header name.

Description

Parses a » RFC 822compliant recipient list, such as that found in the To:header.

Version

PHP PECL mailparse >= 0.9.0

Return value

Returns an array of associative arrays with the following keys for each recipient: display The recipient name, for display purpose. If this part is not set for a recipient, this key will hold the same value as address. address The email address is_group TRUE if the recipient is a newsgroup, FALSE otherwise.