Hello,
I am using the followig script to submit a form:
var Mailto = "me@myCompany.com";
var mySubject = "This is the subject";
var myMessage = "Please find attached my file.";
var Mail = "mailto:" + Mailto + "?Subject=" + mySubject + "&Body=" + myMessage;
event.target.submitForm({
cURL: Mail,
bEmpty: true,
cSubmitAs: "XML"
});
Unfortunately I cannot change the name of the attached XML file. It is automatically the PDF filename.
Has anybody an idea how to change the attachement name?
Many thanks.
Regards,
ra_be