Darith Chea
Darith Chea

Reputation: 3

Send email one time 20 emails only in CodeIgniter

How to Send email one time 20 emails only codeIgniter?

When click send button one time send only 20 records.

How to do that ?

Can you give simple code?

Upvotes: 0

Views: 158

Answers (1)

joni_demon
joni_demon

Reputation: 666

I'm not sure about this,but maybe it help

$this->load->library('email');

for($a = 0;$a < 20;$a++){
    $this->email->from('[email protected]', 'Your Name');
    $this->email->to('[email protected]');
    $this->email->cc('[email protected]');
    $this->email->bcc('[email protected]');

    $this->email->subject('Email Test');
    $this->email->message('Testing the email class.');

    $this->email->send();
 }

Upvotes: 3

Related Questions