Â
HEADER:
Â
Â
<?php /** * Add a header to the quotepdf.tpl file * check out http://docs.whmcs.com/PDF_Invoice#Header_.26_Footer */ $pdf->SetFont($pdfFont, '', 8); $html .= '<p>This is the header text</p>'; $pdf->writeHTML($html, true, false, false, false, '');
 FOOTER:
 <?php
$pdf->SetFont($pdfFont, '', 8); $html .= '<p>This is the footer</p>'; $pdf->writeHTML($html, true, false, false, false, '');
Â
Â