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

How to add the possibility to send a compiled pdf from the same pdf

New Here ,
Sep 14, 2016 Sep 14, 2016

Hello guys!

I would like to send a filled pdf directly from the pdf. What should I do, I know it's possible to send a filled pdf directly from the document as an attachment in an email but I can't find the option.

Could you help me?

TOPICS
Acrobat SDK and JavaScript
475
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 ,
Sep 14, 2016 Sep 14, 2016

Use File > Send File > ...

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 ,
Sep 14, 2016 Sep 14, 2016

Probably I haven't made myself clear, I would like to send a pdf to my customers and once they filled it I would like to give them the possibility to send it back to me filled, like filling a form in a website!

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 ,
Sep 14, 2016 Sep 14, 2016

Add a submit button to the 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
Enthusiast ,
Sep 20, 2016 Sep 20, 2016
LATEST

Your Question: I would like to send a pdf to my customers and once they filled it I would like to give them the possibility to send it back to me filled, like filling a form in a website!

Answer: The filled out form can be sent back using several different methods.

1) The easiest way is to create a button, and set the submit button action to the desired recipient email address: mailto:you[@]domain.com. This method is the least reliable way; because, it requires client-side email software to be correctly configured on each client who submits the form.

2) The most reliable way is to submit to a server-side script such as ASP.net or PHP; which can bypass client-side email software and send the submission using an existing SMTP account. ASP.net scripts have an advantage of utilizing iTextSharp technologies. With iText technologies the server-side script can merge the submission data (FDF, XFDF or XML) with a blank PDF form; so there's no need to extend usage rights to the PDF using Adobe Acrobat. Normally Adobe Reader users can only submit the data formats; not the whole PDF form. iTextSharp can also parse the incoming PDF form data, and inject it into the mail message's TO, CC, BCC, subject, body and attachment file name properties. The server-side script methods work with both Adobe Reader Standalone and Web plug-ins.

Note: Both methods require Adobe Reader in order to submit the PDF forms. Adobe Reader for mobile users have limited functionality; and may not work on some tablet or mobile devices.

For online ASP.net submission examples:

www.pdfemail.net/examples/

Visit the following site for a mailto generator web app that you can paste into your button:

www.nk-inc.com/software/fdftoolkit.net/email-pdf-mailto-generator.aspx

Contact me and I can setup a personalized demo:

www.nk-inc.com/support/sales/

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