I'm working on a PHP web app which submits data to a third party via email. One of the documents it has to attach is a printer file, which has to be generated on the fly because it contains user-specific data. The sensible thing to do would be to create a PDF and attach that, but we have to work with the third party spec.
Currently this is all being done offline - a file is created in HTML / RTF / PDF format, we open it, print it and choose "print to file". Anyone have any ideas about how to do this online?
TIA
Elephant