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

Submit Form Button Customization

Community Beginner ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

I am building a form to collect user data and I am currently utilizing the default submit form button that appears within the purple banner. This sends the generic email to my inbox with the attached form. Is there anyway I can edit that email it sends to me?

 

Specificly I'm looking to add one of the fileds from the form into the title of the email.

TOPICS
PDF

Views

410

Translate

Translate

Report

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
2 ACCEPTED SOLUTIONS
Community Expert ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

Yes, by using a script, like this:

 

this.mailDoc({cTo: "me@server.com", cSubject: "Returned form", cMsg: "This is the message body of the email.\nValue of field: " + this.getField("Text1").valueAsString});

View solution in original post

Votes

Translate

Translate

Report

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 ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

LATEST

No, sorry. You can export the data from the returned file to a text file, though.

View solution in original post

Votes

Translate

Translate

Report

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 ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

Yes, by using a script, like this:

 

this.mailDoc({cTo: "me@server.com", cSubject: "Returned form", cMsg: "This is the message body of the email.\nValue of field: " + this.getField("Text1").valueAsString});

Votes

Translate

Translate

Report

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 ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

Where would thi script be placed?

Votes

Translate

Translate

Report

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 ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

As the Mouse Up event of your submit button.

Votes

Translate

Translate

Report

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 ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

I was previously using the adobe distribution form to collect responces in the responce doc and then export them into a csv. Is there any way I can replicate this functionality with this button.

Votes

Translate

Translate

Report

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 ,
Jun 11, 2024 Jun 11, 2024

Copy link to clipboard

Copied

LATEST

No, sorry. You can export the data from the returned file to a text file, though.

Votes

Translate

Translate

Report

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