Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. require_once __DIR__ . '/../../vendor/autoload.php';
  2.  
  3. $mpdf = new \Mpdf\Mpdf([
  4.   'mode' => 'utf-8',
  5. ]);
  6. $html = $this->get_instance()->load->view("email/index", $data, TRUE);
  7. $mpdf->WriteHTML($html);
  8. $mpdf->Output("./result_pdfs/result.pdf");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement