I have following string:
"Test, User" < [email protected] >, "Another, Test" < [email protected] >, .........
I want following result:
array(
array('name' => 'Test, User', 'email' => '[email protected]'),
array('name' => 'Another, Test', 'email' => '[email protected]'),
...........
)