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.
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});
Copy link to clipboard
Copied
No, sorry. You can export the data from the returned file to a text file, though.
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});
Copy link to clipboard
Copied
Where would thi script be placed?
Copy link to clipboard
Copied
As the Mouse Up event of your submit button.
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.
Copy link to clipboard
Copied
No, sorry. You can export the data from the returned file to a text file, though.