JavaScript Button in PDF to attach form in draft email.
I have the following code but it is not creating a draft when you click on it. What is wrong?
var subject= getField("Part Number").value + (" \ ") + getField("Material Number").value + getField("Priority").value
this.mailDoc({
cTo: "email1@email.com",
cCC: "Email@email.com",
cSubject: subject,
cMsg: "This is a DORF Request please provide a response in a timely fashion."
});
