<?php $sep=' ';//разделитель $title='NULL';//заголовок $mess='NULL';//текст $from='NULL';//от кого $array=explode($sep,$row['email']); for($i=0;$i<=count($array);$i++){ mail($array[$i], $title, $mess, 'From:'.$from); } ?>