仅在CodeIgniter中发送电子邮件一次20封电子邮件

时间:2012-03-26 03:22:59

标签: codeigniter

如何发送电子邮件一次20封电子邮件只有codeIgniter?

点击发送按钮一次只发送20条记录。

怎么做?

你能给出简单的代码吗?

1 个答案:

答案 0 :(得分:3)

我不确定这一点,但也许有帮助

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

for($a = 0;$a < 20;$a++){
    $this->email->from('your@example.com', 'Your Name');
    $this->email->to('someone@example.com');
    $this->email->cc('another@another-example.com');
    $this->email->bcc('them@their-example.com');

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

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