mailparse_rfc822_parse_addressesParse RFC 822 compliant addresses
&reftitle.description;
arraymailparse_rfc822_parse_addressesstringaddresses
Parses a RFC 822 compliant recipient
list, such as that found in the To: header.
&reftitle.parameters;
addresses
A string containing addresses, like in:
Wez Furlong <wez@example.com>, doe@example.com
This string must not include the header name.
&reftitle.returnvalues;
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.
addressThe email addressis_group&true; if the recipient is a newsgroup, &false; otherwise.
&reftitle.examples;
mailparse_rfc822_parse_addresses example
, doe@example.com';
var_dump(mailparse_rfc822_parse_addresses($to));
?>
]]>
&example.outputs;
array(3) {
["display"]=>
string(11) "Wez Furlong"
["address"]=>
string(15) "wez@example.com"
["is_group"]=>
bool(false)
}
[1]=>
array(3) {
["display"]=>
string(15) "doe@example.com"
["address"]=>
string(15) "doe@example.com"
["is_group"]=>
bool(false)
}
}
]]>