如何发送电子邮件一次20封电子邮件只有codeIgniter?
点击发送按钮一次只发送20条记录。
怎么做?
你能给出简单的代码吗?
答案 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();
}