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

Need to send Acrobat DC form submissions via encrypted e-mail

New Here ,
May 01, 2020 May 01, 2020

I have a form with a submit button that works to send the completed forms to my e-mail. The problem is, I need these submitted forms to be sent via encrypted e-mail.  Is there a way to make the submit button a little less automated where it actually opens up an Outlook e-mail that the user can intervene and click "encrypt" prior to hitting "send"? 

TOPICS
How to , PDF forms
668
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 ,
May 01, 2020 May 01, 2020

Yes,  It believe should already do that.

However, if you want to force the issue, use a script to send the email. One of the email parameters is "bUI", which when set to true, displays the email client UI before sending. 

Read This:

https://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address/

 

Not everyone is on Outlook, Acrobat uses what ever email client is installed, so it has no way to do anything application specific, except for displaying the email UI

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

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
New Here ,
May 01, 2020 May 01, 2020

Thank you.  Where can I set the "bUI" parameter to true?  Is it something I can do in this field? 

Capture.JPGexpand image

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 ,
May 01, 2020 May 01, 2020

No, unfortunately this feature is only in the scripted solution. Read the article. 

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

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
New Here ,
May 01, 2020 May 01, 2020

Okay, bummer.  I'm not familiar with javascripts.  Even with the help of an article.  Thank you.

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
New Here ,
May 08, 2020 May 08, 2020

Hi Thom,

 

So I actually added the script to have the form e-mailed to me as a PDF attachment, with the e-mail client user interface opening up.  That part is exactly what I wanted.  But now, when I receive the forms the responses are not tracked in a response file like I need them to be.  How can I modify the script I used to have the data tracked in a response file?

 

this.mailDoc({
bUI: true,
cTo: "person@place.com",
cCC: "cc email address",
cSubject: "Returning x form",
cMsg: "Please see attached x form."
});

 

 

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 ,
May 29, 2020 May 29, 2020
LATEST

Responses are only tracked when you use the Distribute and Track features built into Acrobat. 

Thom Parker - Software Developer at PDFScripting
Use the Acrobat JavaScript Reference early and often

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