Hi All, Conceptual question. I am getting ready ...
# suitescript
m
Hi All, Conceptual question. I am getting ready to create a script that will email the customer a PDF of an invoice upon creation. I plan to use the render.transaction() method. How would one go about naming this PDF attachment? I need it to say e.g. CompanyName 12345.
b
render.transaction returns a file.File. Use File.name to set the name.
m
Thank you!