Hi,
I would like to have a PDF file with all the variables values. I'm currently able to create an HTML file but I have no idea how to create a PDF.
Does anyone would know how to, or where to look as a reference ? I tried to find the action related to the "Get documentation for workflow", but I didn't find them...
Code for my HTML |
---|
var d = new Date(); var fw = new FileWriter("/mnt/webviews/Serveurs/" + InHostname + "-" + d.getDate() + "." + (d.getMonth() + 1) + "." + (d.getYear()-100) + "." + d.getHours() + "h" + d.getMinutes() + ".html");
fw.open(); fw.write(content); fw.close(); |
Thank you,