<?php
//The following is work
mail("someone@someone.com","title","message","From: me@someone.com");
//rountine for connecting to the mysql
...
...
//The following cannot work??
while ($row = mysql_fetch_row($result)) {
list($email,$title,$message) = $row;
mail($email,$title,$message,"From: me@someone.com");
};
?>