-1
データをエクスポートしてExcelファイルを添付ファイルとして挿入したいと思います。 codeigniterでそれを行う方法2.2.4。データのエクスポートと添付ファイルの送信Codeigniter
// PHP EXPORT DATA
...
...
$objWriter = IOFactory::createWriter($objPHPExcel, 'Excel5');
header('Content-type: application/vnd.ms-excel');
header('Content-Disposition: attachment; filename="test.xls"');
header('Cache-Control: max-age=0');
$objWriter->save('php://output');
// SEND MAIL
$this->load->library('email');
$this->email->from('[email protected]', 'Test');
$this->email->to('[email protected]', 'Test');
$this->email->subject('EXPORT DATA FILE');
$this->email->message("Test content");
$this->email->attach("INSERT HERE THE EXPORTED FILE");
try {
$this->email->send();
}
catch(Exception $e) {
echo $e->getMessage();
}
あなたはどこから貼り付けコードをコピーします。あなたのコントローラとモジュールはどこですか? –