Can I have Email Recipients of a PDF Form Complete via Smart Phone Email?

Hello Adobe PDF Forum,
  Is it possible to have email recipients of my PDF form complete via their smart phone email platform?  If so, could you step me through the 'how to' process in making this possible for my recipients?
Thank you!  Have a great afternoon.
Eric

Hi Eric,
Your recipients can use the free Adobe Reader mobile app for iOS or Android to fill out PDF forms via their smart phones. They can download the Reader mobile app from Features | Adobe Reader mobile app. Then, when they receive an email from you with your form attached, they can open it directly from the email client into the Reader mobile app and fill it out. Easy!
Please let us know if you have additional questions.
Best,
Sara

Similar Messages

  • Is there a way to have the email notifications include the PDF form?

    Is there a way to have the email notifications include the PDF form?

    Very Disappointing. You fill out a Form and you can't get the Form via E-Mail :-(
    Only the information you filled in in the empty fields.
    I designed a contract formular for customers.
    The customer fills out the PDF in the web form.
    Via E-Mail notification i get the infos the client entered in the form.
    But not the PDF itself.
    So i have to enter the web frontend search the data and download the filled in form from there.
    After downloading the form i have to e-mail the form to the customer and the mailing list by hand ...
    I would think that it is an obvious feature that you can e-mail copy of what is entered (together with the text of the formular!) as an pdf attachement and not only the entered fields ...
    Maybe someon can check this feature request. (Attach entered form as PDF to the notification E-Mail).
    It would also be great if you would have the possibility to enter an E-Mail Adress for CC insinde the formular :-)

  • Sending PDF forms (created using SFP) as Email Attachment

    Hi,
         I have created bunch of ADOBE forms using SFP. They are not interactive forms. created using ADOBE Live cycle designer.
    I have the Function module and by executing I can view the PDF form in print preview mode. But I have to save this in backend and attach to email.
    I have a program that have to send one of the forms created in SFP as email attachment to outside SAP.
    Please advice how to achieve this.
    Thanks,
    Sanjeev

    Hi ,
    Please find below a code sample for your requirement
    *& Report  ZENVOI_PDF_MAIL
    REPORT  zenvoi_pdf_mail MESSAGE-ID ad.
    TYPE-POOLS : abap .
    DATA : data_for_update TYPE zdemopdf ,
           hexa            TYPE solix_tab.
    DATA : fm_name   TYPE funcname ,
           param     TYPE sfpoutputparams,
           doc_param TYPE sfpdocparams ,
           output    TYPE fpformoutput .
    param-nodialog = abap_true. " suppress printer dialog popup
    param-getpdf = abap_true.
    doc_param-langu = sy-langu.
    doc_param-country = 'FR'.
    doc_param-fillable = abap_true.
    doc_param-dynamic = abap_true.
    CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
      EXPORTING
        i_name     = 'ZDEMO_PDF'
      IMPORTING
        e_funcname = fm_name.
    CALL FUNCTION 'FP_JOB_OPEN'
      CHANGING
        ie_outputparams = param
      EXCEPTIONS
        cancel          = 1
        usage_error     = 2
        system_error    = 3
        internal_error  = 4.
    CHECK sy-subrc EQ 0.
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams  = doc_param
        data_for_update    = data_for_update
      IMPORTING
        /1bcdwb/formoutput = output
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3.
    CALL FUNCTION 'FP_JOB_CLOSE'
      EXCEPTIONS
        usage_error    = 1
        system_error   = 2
        internal_error = 3
        OTHERS         = 4.
    CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
      EXPORTING
        buffer     = output-pdf "PDF file from function module
      TABLES
        binary_tab = hexa.
    * Envoi du mail
    ** CLASS-DEFINITIONS
    DATA: send_request       TYPE REF TO cl_bcs.
    DATA: document           TYPE REF TO cl_document_bcs.
    *DATA: sender             TYPE REF TO cl_sapuser_bcs.
    data: sender            TYPE REF TO if_sender_bcs.
    DATA: recipient          TYPE REF TO if_recipient_bcs.
    ** INTERNAL TABLES
    DATA: l_mailtext TYPE soli_tab.
    DATA: iaddsmtp   TYPE TABLE OF bapiadsmtp.
    DATA: ireturn    TYPE TABLE OF bapiret2.
    ** VARIABLES
    DATA: mail_line  LIKE LINE OF l_mailtext.
    DATA: bapiadsmtp         TYPE bapiadsmtp.
    DATA: subject    TYPE so_obj_des.
    DATA : att_subject TYPE so_obj_des.
    DATA : w_except TYPE REF TO cx_root .
    CONSTANTS : c_defmail TYPE ad_smtpadr VALUE
                     '[email protected]' .
    FIELD-SYMBOLS : <smtp> TYPE bapiadsmtp.
    *Set subject of the mail
    subject = 'Exemple de PDF interactif'.
    * Set text of the mail
    mail_line = 'Merci de remplir le formulaire et nous le retourner'.
    APPEND mail_line TO l_mailtext .
    att_subject = 'Template du PDF'.
    TRY.
    * Create persistent send request
        send_request = cl_bcs=>create_persistent( ).
    * Get sender object
        sender = cl_sapuser_bcs=>create( sy-uname ).
    *    sender =
    *      cl_cam_address_bcs=>create_internet_address( '[email protected]' ) .
    * Add sender
        CALL METHOD send_request->set_sender
          EXPORTING
            i_sender = sender.
    * Read the E-Mail address for the user
    *    CALL FUNCTION 'BAPI_USER_GET_DETAIL'
    *      EXPORTING
    *        username = sy-uname
    *      TABLES
    *        return   = ireturn
    *        addsmtp  = iaddsmtp.
    *    LOOP AT iaddsmtp ASSIGNING <smtp> WHERE std_no = 'X'.
    *      CLEAR bapiadsmtp.
    *      MOVE <smtp> TO bapiadsmtp.
    *    ENDLOOP.
    *    CASE bapiadsmtp-e_mail.
    *      WHEN space.
            recipient =
         cl_cam_address_bcs=>create_internet_address( c_defmail ).
    *      WHEN OTHERS.
    *        recipient =
    *     cl_cam_address_bcs=>create_internet_address( bapiadsmtp-e_mail ).
    *    ENDCASE.
    * Add recipient with its respective attributes to send request
        CALL METHOD send_request->add_recipient
          EXPORTING
            i_recipient  = recipient
            i_express    = 'X'
            i_copy       = space
            i_blind_copy = space
            i_no_forward = space.
    * Set that you don't need a Return Status E-mail
        CALL METHOD send_request->set_status_attributes
          EXPORTING
            i_requested_status = 'E'
            i_status_mail      = 'E'.
    * set send immediately flag
        send_request->set_send_immediately( 'X' ).
    *Build Document
        document = cl_document_bcs=>create_document(
                            i_type    = 'RAW'
                            i_text    = l_mailtext
                            i_subject = subject ).
    *     add attachment to document
        CALL METHOD document->add_attachment
          EXPORTING
            i_attachment_type    = 'PDF'
            i_attachment_subject = att_subject
            i_att_content_hex    = hexa.
    * Add document to send request
        CALL METHOD send_request->set_document( document ).
    * Send document
        CALL METHOD send_request->send( ).
        COMMIT WORK.
      CATCH cx_send_req_bcs INTO w_except.
      CATCH cx_address_bcs INTO w_except.
      CATCH cx_document_bcs INTO w_except.
    ENDTRY.
    Hope this help you .
    Best regards

  • Can't find instructions for setting a PDF form to allow users to type in the fields and save the form.  Thanks

    Can't find instructions for setting a PDF form to allow users to type in the fields and save the form.  Thanks

    Hi,
    Have a look at this page Acrobat refers to them as "Reader Extended PDF", Adobe Acrobat X Pro * Enable Reader users to save form data
    Regards
    Bruce

  • Can we have a multiselect box in OIM forms?

    Hi guys,
    How can we have a multiselect in the object form.As I can see default form doest support this.
    Is there any way we can include one.
    phil

    There isn't direct way to doing this, but you can use child forms for multi-select option. Having child-forms in request forms isn't that user friendly - so alternative to that would be modify the default Lookup field behavior to have check boxes instead of Radio - buttons. This behavior can also be controlled per field basis.
    You may want to look at tjspForm.jsp and tjspLookupFormTiles.jsp.
    - Aman

  • In Responses, Can I export the data in a pdf form excluding null data?

    In Responses, Can I export the data in a pdf form excluding null data?

    Let me make sure I understand the request...  There is a feature in the Response table to "Save Response as PDF Form" and you'd like to do this excluding the null data (unanswered questions).  If that is correct it is not supported, the "Save Response as PDF form" will save a PDF that is the entire form filled out as the user filled it.
    Thanks,
    Josh

  • Filling up a pdf form which I received as email. I opened it on my adobe reader 11 and filled up the highlighted fields. Yet when I click on the send via mail it says changes will not be included. How do I send the form with changes?

    Filling up a pdf form which I received as email. I opened it on my adobe reader 11 and filled up the highlighted fields. Yet when I click on the send via mail it says changes will not be included. How do I send the form with changes?
    The add annotations field shows as not allowed in the security options. So how do I send this form back with the changes??

    I think you you need to click 'save' first, then it is saved to acrobat, where it will prompt to send.

  • How do I edit PDF forms on a mobile phone?

    Hi,
    I'm using the FormsCentral App (Acrobat XI) to create the PDF form and have distributed it as open.  I can complete it on a PC using reader as required.
    What I need to do is have the form on mobile phones with reader installed where they can be edited and returned.
    I'm testing on a Windows phone but the main phones will be Android (eg Galaxy), the form opens on the phones but will not edit.
    I'm probably missing something, please advise.

    Hi;
    Adobe Reader on both iOS and Android devices can fill out and Submit the FormsCentral PDF forms.  Your Android target audience should be OK.
    For Windows Phone it does not work, as far as I understand Adobe Reader on Windows Phone does not yet support filling forms. 
    Thanks,
    Josh

  • Can't delete more than 5 podcasts at a time via Smart Playlists

    Can't delete more than 5 podcasts at a time via Smart Playlists, using the Shift+Delete keys to force deleting the source podcast.
    Becomes VERY tedious to get rid of old podcasts with certain "smart playlist" filters.
    Advice? Bug?

    I should add that I face the same problem with Safari and Google Chrome.

  • Email or store submitted PDF form using PHP

    I'm using LiveCycle Designer 8.0. I've searched a lot but haven't seen any answers or solutions to submitting the filled out pdf form online and the pdf sending to an email without it having to use an email client on the users computer.
    I'd prefer to use php and either save to the server or directly send the pdf as an attachment using the php mail() function. Any language would be fine, I'm just experienced with php.
    If anyone would have a solution to this, I am fully capable of editing scripting to send the correct fields for my particular form. I've just not been able to find a way to store and attach in pdf format. Since the LiveCycle has the built-in function to open your default mail client, attach the pdf, and then send - isn't there some way that function could be edited to use the servers php mail feature instead?
    Any help would be greatly appreciated. The reason this has become so important is that the new systems at some doctor's offices are requiring pdf's sent in advance that save in a program that allows the use of digital pen signing (like when you sign for a fedex package) of the documents once the patient arrives. And unfortunately, still many of the patients are not going to be avid pc users and will not have an email client program like outlook set up.
    Thanks much,
    Heather

    Thank you for your answer. I completely understand how to do all the things you mention, have been able to do them - where I can't seem to understand is posting to the web server. Maybe it's just simple and I'm overthinking it. When I set a url to post to, I've been trying to use a php script, but can't get the call right to save or grab the pdf.
    Could you help me with that part? Are you meaning it that way - to post it to a script or am I over-doing it and there's a simpler way?
    I appreciate your help very much.
    Heather

  • I have a new Palm Pre Plus - can I have more than one Google G-Mail Account on the phone?

    I have a general G-Mail account and it has started getting too busy with advertisements etc.  I'm thinking about changing to a different e-mail address but don't know what yet.
    I have an old Palm Centro I used to Synch with my laptop.  Now I need to do this with G-Mail.  So I created a unique g-mail account that would only contain my calendar and contact information - i called it "palm.last name" - made sense to me.
    When I try to add it to my Palm Pre Plus I am unable to sign in.  I'm wondering if you are limited to the number of Gmail e-mail accounts you can have on the phone.  If i can only have 1 then I don't want my e-mail to be "palm.last name" and give that out to people - that would not make sense to them. 
    I already have a Yahoo Account and I'm thinking about another Yahoo Account to keep some e-mails and instant messages separate from my personal Yahoo.  If I cannot add more than 1 account, this is going to be a problem.
    Thank you for any assistance you can provide.

    Hi, and welcome to the Palm Support Community.
    You should be able to add your second Gmail account without any problem...I have two Gmail accounts on my Pre and have no difficulties.
    When you say you are unable to "sign in", I assume you mean you are unable to sync the email and calendar on your new account?  Double-checking your user name and password are the only things that come to mind.
    smkranz
    I am a volunteer, and not an HP employee.
    Palm OS ∙ webOS ∙ Android

  • How do you change the default return email when distributing a PDF form

    Hello everyone,
    I am trying to distrube a pdf form as a customer survey to various client/contact emails.  As a test, I chose to distribute the form, filled in the form distribution information and I send the form to myself. However, when I filled it out and chose 'submit form' it prompted me with the return email address that I know is incorrect and want to change.
    As the author of the form, I need to change the default return email address, but there is no option to do so when I choose to distribute the pdf form  or any new form that I create (only prompted me the very first time I chose to distribute a form). 
    Does anyone know how to change the return email address and information for form distribution?  Can someone please help me with this? 
    Thank you very much!
    -Ryan

    The email address that it uses it what is set in the Identity user preference: Edit > Preferences > Identity > Email Address
    so change it there before you distribute.

  • Can I add a footer to a PDF form?

    I will be collecting responses in forms central by distributing the PDF form to respondents.  Respondents will need to print out their completed form before submitting it.  When I tested it myself, no pagination printed.  I would also like to incorporate company logo in a footer and cannot figure out if that is possible.  Deb

    I can tell you that all Mac users will miss out. I just posted a question about PDF Viewer not work on Mac for FireFox and SeaMonkey.  I had posted a Bug.  I received an answer from someone in the Top echelons of Adobe said they have absolute no interesting in get the Plugin working for Mac. They don't wish to waste their money and effort. So if you intend to make PDF availble in on a Website Mac's will not be able to use them. They will have to download them look at them or fill them out the send them Back in.
    Fortunately there is Nice fellow schubert from Germany make a Pligin That works unfortunate it doen't do button and don't do form , Though he has requested permission from adobe to do so. They refuse.

  • Please Help--Can't fill out or submit/save .PDF forms

    Hi-
    Running Safari 5.1.2 on Mac OS 10.6.8 (the latest updates according to software update) and using the Schubert PDF browser plugin. http://www.schubert-it.com/pluginpdf/
    Before updating from Safari 5.0.xxxx I could fill out and submit .PDF forms in Safari without any issues. Now, I cannot. The form comes up but I cannot enter any text into the text fields.
    About a month ago I went through this and had to revert back from a time machine back up because the ability to fill out forms in browser is an everyday necessity for me.
    Does anyone know how to fix this issue?? Please help...

    Ok.. I still cannot get this figured out. I'm baffled and frustrated!!
    I did a deep cache cleaning using Snow Leopard Cash Cleaner, all of your reccomendations, and about an hours worth of reading. I had the schubert-it plug in uninstalled and have gone back to reinstalling it with no luck. I was thinking after all the cache cleaning it might work. Nope..
    I can't beleive this is an issue after an update.. Apple is normally so great with this stuff.
    The com.adobe.reader folder does not exist on my computer.
    This problem occurs with any online form, not just the ones I need to access and submit, and it occurs with the native PDF support in Safari as well as the schubert app.
    Any other ideas? I read on one post where someone fixed it with quicktime, but the video he put up to show how he fixed it was no longer available.
    Carolyn, or anyone else, .. any ideas??

  • How can I format fonts when filling in PDF forms with Preview

    I have been using Preview to view and fill in PDF forms.  The font that Preview uses to fill in the forms is very small and difficult to read.  I would like to make it larger to match the document font size.

    Whilst in the Preview application, press "Shift - Command - A" (⇧⌘A) simultaneously to show the markup toolbar, or click View, and select "show markup toolbar". There is an icon "A" near the right hand side of the now visible markup toolbar, click this icon to reveal all the font options. 

Maybe you are looking for

  • Error while deploying a WebDynpro from NWDS

    Hi, I'm trying to deploy a simple WebDynpro application. I'm deveoping on a local machine, the J2EE Engine is on the remote host. While developing I'm getting the following deployment exception: Deployment exception: Cannot determine sdm host (is emp

  • Logical System Creation & JCO Connection.................

    Hi, I have configured ESS in my portal 6.0 but I am confused with some concepts. I have created System in portal System Landscape with alias "SAP_WebDynpro_XSS" . & also i have created JCO Connection SAP_R3_HumanResources (Appln data/Metadata).These

  • FaceTime not working properly

    Hi, I just recently upgraded to 13" i5 MBP with Lion OS. I noticed that my FaceTime is not working properly. I have an iPad 2 also and I used it most of the time for my FaceTime which is why I didn't notice that the FaceTime of my new MBP is not work

  • Weird squiggles showing up in preview/published version but not on the stage

    When I preview or publish my animation, these weird lines show up that aren't on the stage. There's no hidden layers, and I can't figure out how to stop them from appearing. I'm using CS5 on Windows 7 The squiggles are near "Watt"- But they don't sho

  • Change Management in Implementation project

    Hi all, Have any one used change request management in implementaion project?How to transport tp's in that?is it the same way as we do in maintenance project?How the transport request will be tracked? Thanks in advance, Avinash.