Send PDF form IPad document doesnt appear in email.

I use the Ipad for sending PDF's to clients and internal coworkers
the emial looks like it makes it out looking at the sent mail from the ipad
but the attachment is compromized - outlook user says "no attachment"
If I save a draft of the email first often the sent PDF file will make it thorugh - but not always.
This was the last issue
- This is what I see in my "out box" in outlook on the PC
On the Ipad - every thing looks great.
What is the problem - ibooks - email on  Ipad.- What are your sugestions.

My final solution was to post the form and offer a link to dowload/install Adobe Reader and to also offer a link for Chrome users.
* I will continue to look for a better solution, but at least the above is functioning.
**I also set my bUI to true.
Many thanks, Tim
P.S.  I did report this to Google Chrome, heard nothing yet.  Also if you think of a better solution let me know.  I'm not familiar with javascript........I have a better understanding of HTML.......if this were HTML I would have done the below.
<html>
<body>
<script type="text/javascript">
alert("this is an alert");
function go() {
                alert("Hi");
                var location = document.getElementById("location").value;
                //console.println("location: = " + location);
                var email = "";
                email = "[email protected]";
                if (location == "Select a location")
                                                alert("You need to select a location first");
                else if (location == "Other")
                                email = "[email protected]";
                if (email != "")
                                //this.mailDoc({bUI:true,cTo:email,cSubject:location,cMsg:"Completed Employee Appointment Request Attached"});
                                                window.open('mailto:' + email + '?subject=' + encodeURIComponent(location));
</script>
                This is a test
                <input type="text" id="location" value="Select a location">
                <input type="button" value="submit" onclick="go()">
</body>
</html>

Similar Messages

  • 'send to' widget? I need to send pdf without downloading and attaching to an email (one click send function)

    Is there a 'send to' widget I can attach to a pdf document or form to send pdf without downloading and attaching to an email (one click send function)

    From this conversation's thread it appears that Acrobat is not the application / service at issue.
    As this user forum has as its focus "Acrobat" it seems that the OP is in the wrong place.
    Acrobat's one click send feature provides the user a "draft" email. The user still has to process ("click") through steps with the email client/service to actually get the email out and on its way.
    I'm sure that "one click" does everything is available somewhere. Considering all it'd have to do and do right it'd be rather expensive.
    Be well...

  • Form link does not appear in email notification.

    Form link does not appear in email notification
    We have added a custom notification to the OM workflow process. The notification itself has a form attribute which provides a link to the sales order form. This works fine when notification is viewed via worklist - notifications within apps. The link does not appear in the email notification.
    Is there any alternate way to provide a form link to Oracle Applications form that can be accessed via email (after logging into application, if the user is not logged in).
    Thanks

    Similar functionality is available in PO and Req Approval process. Can you take a look at the PO Approval Process workflow? I remember the email notification does show the link, which is a URL link and has parameters in it. This functonality provides where the approvers need to modify the document which is requested to be approved. So they can click on the link, modify and close and approve if necessary.
    Are you expecting them to modify the same or you just want to show query only screen?
    There is a webpage available to see order information called Order Information (user Order Information User resp). You can send parameters to that webpage and that should show login page opening up a seperate session with all the parameters in the URL. Once logged in that should show order information.
    Thanks
    Nagamohan

  • Send PDF form to e-mail as attachment with a PHP script on the server

    Hi,
    For several days I've been searching though the internet looking for a solution, a quite simple one in my opinion, but I got a little desperate not getting any result I want.
    Okay. The Situation.
    I have a PDF form to order sandwiches and drinks.
    The PDF has serveral area's and columns where customers fill in the amount of the products they would like to order.
    At a position of a field, the kitchen can almost blindly see what products a customer ordered.
    Therefore, when someone fills in the form, I want to send the filled PDF by e-mail to the kitchen's e-mail adress. And important: the PDF in the kitchen's mailbox should be completely identical to the form the customer filled in.
    So, I have an Order button in my form. I set the action as 'Submit a form'.
    In the settings under 'Enter a URL for this link' I used just some PHP mailer script I also use on my website contact form.
    IF I check 'HTML' under 'Export Format' the PHP mailer works fine. I receive an HTML e-mail listed the ordered products.
    BUT
    I do want the original filled PDF in my mailbox instead of an HTML e-mail.
    So, for 'Export Format' I checked 'PDF The Complete Document'.
    But then my PHP mailer script doesn't work anymore.
    It gives errors like 'no valid e-mail adres' , etcetera etcetera.
    Who has a solution?
    Who has a working standard PHP script for me what just sends the kitchen an empty mail with the original PDF as attachment?!
    There is no need to use any database or other more complex functionality. Just mail the filled PDF.

    You can submit whole PDF format as long as you enable usage rights on the PDF.
    Normally Adobe Reader users can only submit the data, XFDF, FDF, XDP, XML.
    To enable usage rights on the PDF you will need to use Adobe Acrobat Std/Pro.
    As for the PHP Script; it depends on your PHP web server capabilities.
    The script will be slightly different, if the server uses PHP Mail or PHP PEAR.
    Just attach the submission to an email and send.
    If the client is submitting the form from a standalone pdf reader app, you can also respond with a success or failure FDF \status message; otherwise, you can redirect to a success / failure URL.
    For more information and online examples:
    http://www.pdfemail.net/examples/

  • Save & Send PDF Form

    Hi all,
    I'm trying to program a function in my PDF form that will automaticly save the PDF form in a folder and then sends the (just saved) PDF form attached in an e-mail.
    I've got the mail function working with my submit button. The only question is how can i get my PDF form to first save and then send the form?
    I've treid several saving scripts but couldn't get it working.
    Could you guys help me out?
    Kind Regards,
    Vincent
    Below my code:
    // Set up the recipients,subject, body, etc.
    var sTo = this.getField("Unit").value;
    var sBCC = "[email protected]";
    var sSubject = "Nice subject";
    var sBody = "Bla bla bla";
    // Set the error messge to display if it doesn't work, \r = carriage return
    var sErrorMsg = "Could not send email. Please make sure your email client is set up correctly.\r\r";
    sErrorMsg += "Otherwise, save this file and manually attach it to an email to: " + sTo +" [email protected]";
    // Email the entire document
    try {
        mailDoc({
        bUI: true,
        cTo: sTo,
        cBcc: sBCC,
        cSubject: sSubject,
        cMsg: sBody
    } catch(e) {
        app.alert(sErrorMsg, 1);

    To save with a script, you'll have to use the doc.saveAs method. There are a number of security related issues you'll have to deal with, as discussed here: http://acrobatusers.com/tutorials/how-save-pdf-acrobat-javascript

  • 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

  • SENDING PDF FORMS VIA MAILS

    Dear friends,
    I have to developed one object through which i can send
    my invoice print in pdf format to the respected users email id.
    Can this be also done via using attachment.
    We are taking Print using va02 and out put type zsin.
    Please help me out.
    Thanks and Regards
    vivek

    Vivek do you mean that you want to create a  attachment of type PDF  and this dcouemnt is a online document and
    can you let me know are you using any ABAP program or a workflow to send the email.
    Try like this
    In the program you make use of the FM FP_FUNCTON_MODULE_NAME and you have to call the function module that is generated by the above FM.
    The Properties of ADOBE forms are associated with the structure FP_FORMOUPUT fill the relevant fields in the structure.
    Now after performing the above two steps you need to convert the PDF form to BINARY for this you have to make use of the FM SCMS_XSTRING_TO_BINARY this is because you have to pass the binary content to the workflow conatiner using the Fm SAP_WAPI_WORKFLOW_START by using conatiner parameter of TABLES part.
    create a Z BO or if you are familiar with OO ABAP then create a class and inside that class or BO create a method  in side this method all you to do is the converted PDF to BINARY for this use
    SCMS_BINARY_TO_XSTRING and after converting call the FM SAP_WAPI_ATTACHMENT_ADD.
    In SAP_WAPI_ATTACHMENT_ADD you have to pass the document attributes for like name , type  title, so for this you have to fill a structure of type SWR_ATT_ID and you have to pass this to SAP_WAPI_ATTACHMENT_ADD  and this FM will retrun a DOC ID and you ahve to pass this ID to the TASK and the from TASK to workflow &_ATTACH_OBJECTS& in the workflow is responsible to handle the attachments...
    Any more help needed revert back

  • Problems with sending PDF form

    I am unable to send my PDF form through Microsoft Outlook mail. The error message states there I have the wrong Server name?

    How exactly are you sending that document?
    What do you have set in Adobe Reader | Edit | Preferences | Email accounts ?

  • Error while saving interactive pdf form:The document could not be saved.

    Hello,
    Can anyone please help me here.
    Not able to save the pdf form.
    I have interactive form which contains static fields,text fields,Document digital signature and a submit button.
    After filling and signing the form it will ask for saving the form.But saving is giving error.
    Error : The document could not be saved.There was a error reading the document(26).
    Can anyone please tell me why i am getting this error.
    Thanks in advance,
    Menaka.H.B

    Hello,
    Integrated into WD application means -> Interactive form generated in SFP transaction is used in abap webdynpro application.
    Offline scenarion -> Since it is an interactive form, user will fill the form offline and submit it by email.From the webdyn pro appliaction user will download the form to the local desktop.Fills it offline and submits the form.
    Now the interactive form generated directly from sfp tcode is working fine.I can fill the form,Sign it, save it and submit the form.
    But the form downloaded from the WD application cannot be saved and is not allowing to dogitally sogn the form.
    Its giving error The document could not be saved. there was a problem reading the document(26).
    Thanks and Regards,
    Menaka.H.B

  • Send PDF form to email address user enters in textfield on form.

    I would like to be able to allow the person using the form to choose what email address the PDF form is emailed to. I read this post which sounds like what I want but I keep getting a Submit Cancelled error. The email does get generated and the form is attached as a PDF so that part works okay.
    http://forums.adobe.com/message/4167414#4167414
    This is the code I am using as I only need the To: address populated.
    form1.Page1.Button1::preSubmit:form - (JavaScript, client)
    var strToAddress
    //Capture the values from the form fields.
    strToAddress = txtToAddress.rawValue;
    event.target.submitForm({cURL:"mailto:"+ strToAddress,cSubmitAs:"PDF",cCharset:"utf-8"});

    Hi,
    There is an example here: http://assure.ly/eUR4wJ.
    // Declare the variable
    var vEmail;
    // Check that the email field is not null
    if (txtToAddress.rawValue !== null) {
         vEmail = txtToAddress.rawValue;
    // Send email
    event.target.submitForm({cURL:"mailto: " + vEmail + "?subject=&body=",cSubmitAs:"PDF",cCharset:"utf-8"});
    Niall

  • Adobe PDF-based print forms - how to send pdf-form by mail?

    Hello All.
    I have created a PDF-form and now I want to send the form by mail without
    seeing it on my screen first. I want it to be done in the backround.
    I'm not using java/abap web dynpro.
    Can somebody help me with this?
    Thanks, Barak.

    hi
    good
    go through this link hope this would help you solve your problem
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/8cd6adbb-0301-0010-39ba-938c601d5db9
    reward point if helpful.
    thanks
    mrutyun^

  • Sending PDF form directly to email

    Is it possible to send filled PDF form directly from Acrobat Pro or Reader to requested email by clicking the SEND button? Or does it always go via senders email application?
    What should be done to get it going directly?

    Is it possible to send filled PDF form directly from Acrobat Pro or Reader to requested email by clicking the SEND button? Or does it always go via senders email application?
    Answer: To bypass client-side email software the form needs to submit to a server side script such as PHP or ASP.net.
    What should be done to get it going directly?
    Answer: You will need an SMTP account, a web server and server-side programming knowledge. The script would need take the inbound submission stream and pass it to the outbound SMTP message, and return a FDF response message or redirect to a URL. If you are using ASP.net, you can use iTextSharp or FDFToolkit.net to parse the submission, and inject the values directly into the message TO, CC, BCC, subject and body.
    For online examples please visit the following website: www.pdfemail.net/examples/

  • Send PDF form to FTP server folder

    I am not sure if this is possible, but one of my clients wants it, so I'm checking. They have a PDF form set up that currently sends the attachment via the user's email program. My client doesn't like that. So they want it to when a user fills out the PDF and submits it, the filled out PDF is sent to an FTP folder they can access. Is it possible to send a PDF to a specified FTP folder? If so, what all would be needed?
    Thanks

    Not possible. You can submit to a web server, which can then save the file somewhere, but this would involve some programming.

  • How do I send PDF forms to OWA through reader 11?

    I have Adobe reader XI and trying to send PDF from data to OWA. I can do it to regular outlook, but not via OWA.

    Hello,
    Have you tried adding OWA as your webclient? Similar to Gmal and Yahoo workflow, please see http://acrobatusers.com/tutorials/how-to-use-webmail-in-acrobat-infographic
    Regards,
    Deepak

  • PDF form online but when submitted via email, received as XML

    I'm trying to include a pdf form, created in Designer, on my website where guests can fill out the form and then hit the submit button and the form is emailed to me. Currently, I am linking to the form like it is another web page.
    When the form is emailed to me, it is in the XML format. Once the file is opened, it gives me instructions on how to view it. It says to open the original pdf form and somehow place the xml data into it. Isn't there an easier way?
    I would like to receive the "filled out" form as a pdf via email so I can just open it up with reader and print it. Others, that are more technically challenged will be receiving the "filled out" form also. The easier the better. thanks in advance

    A PDF that has been Reader Extended activates latent Adobe Reader functionality such as save filled in forms, annotate, sign, and submit interactive Adobe PDF documents. For more info see
    http://partners.adobe.com/public/developer/livecycle/readerextensions/devcenter.html
    Denver
    Adobe Enterprise Support

Maybe you are looking for