I\'m using TCPDF to print a receipt and then send it to customer with phpMailer, but I have a problem:
I have no idea how to save the file into a pdf.
This worked for me, saving to child dir(temp_pdf) under the root:
temp_pdf
$sFilePath = $_SERVER['DOCUMENT_ROOT'] . '//temp_pdf/file.pdf' ; $pdf->Output( $sFilePath , 'F');
Remember to make the dir writeable.