For the moment:
$email = array(
'to' => array( 'info@company.com','administration@company.com'),
'from' => $data['email'],
'subject' => 'Contactform',
'body' => $body
),
foreach($email['to'] as $to) {
$result = email(a::merge($email, array('to' => $to));
}