home *** CD-ROM | disk | FTP | other *** search
/ Enter 2004 June / ENTER.ISO / files / xampp-win32-1.4.5-installer.exe / xampp / send_example.php < prev    next >
Encoding:
PHP Script  |  2004-03-24  |  219 b   |  12 lines

  1. <?php
  2.  
  3. require_once ( "base.php" );
  4.  
  5. // How many mails could we send each time
  6. $max_ammount_mails = 50;
  7.  
  8. $mail_queue =& new Mail_Queue($db_options, $mail_options);
  9.  
  10. $mail_queue->sendMailsInQueue($max_ammount_mails);
  11.  
  12. ?>