次のように、クエリ結果を sendmail コントローラーに表示したい:
コントローラ
function contact()
{
$data['email'] = $this->Pgallery_model->get_Email();
$config['protocol'] = 'sendmail';
$this->email->initialize($config);
$this->email->to(/*here query result*/);
$this->email->send();
$this->load->view('contact_success', $data);
}
モデル
function get_Email()
{
$query = $this->db->query('select email from setup');
return $query->result();
}
配信メールにクエリを取得する方法は? ありがとうございました