I\'m currently using mPDF to generate a pdf from HTML (which was generated by PHP).
All works as expected but I\'d like to be able to change the default filename. C
You can try as:
$file_name = 'yourFileName.pdf'; $mpdf->Output($file_name, 'D');
Help: