<?php
$content = file_get_contents('avril2010.html');
$headers = "Content-Type: text/html\r\nFrom: onlinederv.com<noreply@onlinedev.com>\r\n";
$to = array('matei.stefanescu@hotmail.com', 'antoniopappa@yahoo.com', 'matei.stefanescu@gmail.com', 'matei.stefanescu@onlinedev.ro');
foreach($to as $mail) mail($mail, 'Newsletter', $content, $headers);