View Single Post
  #8 (permalink)  
Old 19-01-2008, 20:40
mephisto's Avatar
mephisto mephisto is offline
Senior Member
 
Join Date: Feb 2007
Location: Darlington
Posts: 100
Send a message via ICQ to mephisto Send a message via MSN to mephisto
Default

You could try something like

PHP Code:
// build up Mail instance above
$recipients = array();

// add recipients into array
$recipients[] = 'me@mydomain.com';
// ...

foreach($recipients as $recipient) {
   if(
PEAR::isError($result $mail->send($recipient$headers$body)) {
      
// log not sent, or how ever you handle the fact they are not sent
      
echo $result->getMessage();
   }

Reply With Quote