0

我正在 Codeigniter 中开发一个邮件队列,一次发送 100 条消息。我正在寻找执行此操作的最佳方法并遇到了$this->db->insert_batch(). 它看起来很有用,但我找不到有关何时或如何使用它的信息。有没有人将它用于邮寄目的?

$data = array(
   array(
      'title' => 'My title' ,
      'name' => 'My Name' ,
      'date' => 'My date'
   ),
   array(
      'title' => 'Another title' ,
      'name' => 'Another Name' ,
      'date' => 'Another date'
   )
);

$this->db->insert_batch('mytable', $data); 

// Produces: INSERT INTO mytable (title, name, date) VALUES ('My title', 'My name', 'My date'), ('Another title', 'Another name', 'Another date')
4

1 回答 1

2

您不能$this->db->insert_batch()用于发送电子邮件(显然),因为它用于将数据插入数据库。您可以做的是改用CodeIgniter 电子邮件类

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

$this->email->from('your@email.tld', 'Your Name');
$this->email->to('your@email.tld'); // Send the email to yourself to see how it looks
$this->email->bcc('...'); // Pass in a comma-delimited list of email addresses or an array

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

$this->email->send();

在我看来,这将是使用 CodeIgniter 向大量用户发送电子邮件的最佳方式。

于 2012-06-05T02:44:08.553 回答