Мое вложение в PDF-файл было повреждено.
Вот мой код:
$buffer = chunk_split(base64_decode($row->arquivo)); $name = $row->nome_arquivo; $extensao = $row->extensao; $this->email->attach($buffer, 'attachment', $name, $extensao); $this->email->send();
попробуйте это:
$type = pathinfo($file_name, PATHINFO_EXTENSION); $base64 = 'data:application/pdf/' . $type . ';base64,' . base64_encode($data);