Welcome Guest, Not a member yet? Register   Sign In
How to send email for more than 1000 user............
#12

[eluser]imzyos[/eluser]
just and idea ok...

THIS SUCKS Sick

Code:
class foo extends Controller {

  function send()
  {
    $query = $this->db->getwhere('addresses', array('mailsent'=>'N'), 50, 0);
    
    if ($query->numrows() != 0) {
    foreach ($query->result() as $address) {
      $this->email->to($address->email);
      $this->email->send();
      $this->db->update('addresses', array('mailsent'=>'Y'), array('email'=>$email));
      redirect('foo/send');
    }
  }
}

a lot of httprequest =S


Messages In This Thread
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 07:18 AM
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 07:28 AM
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 09:20 AM
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 09:29 AM
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 09:32 AM
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 10:54 PM
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 11:03 PM
How to send email for more than 1000 user............ - by El Forum - 10-09-2007, 11:38 PM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 12:10 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 01:17 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 01:39 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 01:55 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 01:58 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 02:12 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 05:22 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 06:48 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 07:12 AM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 01:22 PM
How to send email for more than 1000 user............ - by El Forum - 10-10-2007, 06:38 PM
How to send email for more than 1000 user............ - by El Forum - 10-11-2007, 08:30 AM
How to send email for more than 1000 user............ - by El Forum - 02-05-2008, 11:21 AM
How to send email for more than 1000 user............ - by El Forum - 03-01-2009, 03:57 PM
How to send email for more than 1000 user............ - by El Forum - 11-26-2009, 12:34 AM
How to send email for more than 1000 user............ - by El Forum - 11-26-2009, 01:19 AM
How to send email for more than 1000 user............ - by El Forum - 11-26-2009, 06:19 AM



Theme © iAndrew 2016 - Forum software by © MyBB