According TCPDF documentation following metadata can be set.
$pdf->SetAuthor();
$pdf->SetTitle();
$pdf->SetSubject();
$pdf->SetKeywords();
It would be nice to be able to add those in the PDF template, so you can set eg the title to "Invoice nr {{invoicnr}} for {{clientname}}"
$pdf->SetAuthor();
$pdf->SetTitle();
$pdf->SetSubject();
$pdf->SetKeywords();
It would be nice to be able to add those in the PDF template, so you can set eg the title to "Invoice nr {{invoicnr}} for {{clientname}}"
Comment