batch_bcc_send() public method

Batch Bcc Send. Sends groups of BCCs in batches
public batch_bcc_send ( ) : void
return void
Esempio n. 1
0
 protected function send_email($to, $subject, $text)
 {
     $this->load->library('email');
     $this->email->from(MAIL_FROM_ADDRESS, MAIL_FROM_NAME);
     $this->email->bcc($to);
     $this->email->bcc_batch_mode = true;
     $this->email->subject($subject);
     $this->email->message($text);
     $this->email->batch_bcc_send();
     return $this->email->send();
 }