Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

GeneralError: Operation Failed Email Submit Button

Community Beginner ,
Dec 04, 2018 Dec 04, 2018

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?

TOPICS
Acrobat SDK and JavaScript , Windows
831
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Dec 04, 2018 Dec 04, 2018

Make sure the "Manager Email" field contains a valid email address.

Translate
Community Expert ,
Dec 04, 2018 Dec 04, 2018

Post your full code, please.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Dec 04, 2018 Dec 04, 2018

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});

}

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 04, 2018 Dec 04, 2018
LATEST

Make sure the "Manager Email" field contains a valid email address.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines