Copy link to clipboard
Copied
I am currently testing several forms in acrobat that use email submit buttons and after testing several forms I start getting this error:
GeneralError: Operation failed.
Doc.mailDoc:8:Field AfterMarketSubmit:Mouse Up
When I restart my computer the errors go away. Is there a way to never receive this error?
1 Correct answer
Make sure the "Manager Email" field contains a valid email address.
Copy link to clipboard
Copied
Post your full code, please.
Copy link to clipboard
Copied
I use variations of this:
{
var cToAddr = this.getField("Manager Email").value;
var cSubLine = this.getField("Employee Name").value + " " + "'s Performance Review"
var cBody = "Here is " + this.getField("Employee Name").value + "'s performance review"
this.mailDoc({bUI: true, cTo: cToAddr, cSubject: cSubLine, cMsg: cBody});
}
Copy link to clipboard
Copied
Make sure the "Manager Email" field contains a valid email address.

