Skip to main content
Participant
June 11, 2024
Answered

Submit Form Button Customization

  • June 11, 2024
  • 5 replies
  • 898 views

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.

This topic is closed to new replies. Start a new post to keep the conversation going.
Correct answer try67

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.


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

5 replies

try67
Community Expert
Community Expert
June 11, 2024

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});
Participant
June 11, 2024

Where would thi script be placed?

try67
Community Expert
Community Expert
June 11, 2024

As the Mouse Up event of your submit button.