foreach (explode(',', $addresses) as $email) {
mail($email, 'Subject', 'Body');
}
Or for a more fun way to do it:
function array_mail($value, $key, $body) {
mail ($value, 'Mail from me', $body);
}
array_walk(explode(',', $addresses), 'array_mail', 'Message Body');