Fai una query:
Codice PHP:
<?php
//Selezioni solo gli utenti che devono ricevere la newslett.
$query="SELECT * FROM user WHERE list='1'";
$res mysql_query($query);
while(
$row mysql_fetch_array($res))
{
 echo 
"id : ".$row['id']." mail : ".$row['email']."
"
;
 
//qui poi fai quello che serve a te....
}
?>