How could I parse email addresses which are in this format :
"Bob Smith" <bob@company.com>, joe@company.com, "John Doe"<john@company.com>
And get an array like this :
array(
'bob@company.com'=>'Bob Smith'
'joe@company.com'=>''
'john@company.com'=>'John Doe'
);
We have something similar to mailparse_rfc822_parse_addresses() with Laravel?