How do I set the Submit button to send the information directly to a specific email address?

How do I set the Submit button to send the information directly to a specific outside email address? It isn't clear to me where or how it says that you can do this.

Is this for a web form or a PDF? If PDF, you would have to use Acrobat to edit the form and replace the submit button action with either a "Submit a form" action using a mailto type URL, or use the doc.submitForm statement to do the same.

Similar Messages

  • How do I make a submit button that sends the form to an email address?

    I can see how to link to an email which then opens up an email someone could attach the form to. But I do not see how to make a button that automatically sends the form to an email address. Can someone provide assistance? Thanks!

    I have the same question. You'd thing this would be a no brainer requirement for a form.

  • When click on the submit button i got the below error.

    Hi Gurus,
    i am very new to oaf.
    i am trying to insert data into database tables.
    so i am entering the data and click on the submit button i got the below error in createPG rightside the top
    Error while creating a new entity row for NewManagerCustomTableEO
    Plz help me
    thanks
    latha.

    Hi,
    Please provide the code that u r using..
    Thanks
    Raghav.

  • How so i add a submit button to send different forms to different emails?

    Im looking to add a submit button to the forms i create. I would like different forms to be sent to different emails. How do i do that?

    Hi Bobby ,
    For adding a button follow these steps ,
    Tools>Interactive Objects>Add Button>Select the area where you want the button and you will see a small dialog box along with that button option you would have created .Click on 'All Properties' option and in the next dialog box  customize the various button properties as per your convenience .The Action tab will help you select the preferred action you want for a particular button .
    Please go ahead and give it a try and write us back with your feedback.
    Regards
    Sukrit Dhingra

  • How can I get an invoice from the Apple store note that the original invoice may be burned with the house though Bamkmkm Send to Olga miles is my new (email address removed)and Thanks

    how can i get an invocce from the Apple store UK ?
    Message was edited by: Host

    Find the Apple Customer Support phone number for whichever country you're in and call them for assistance.

  • How do I get to the Submit button on my form?

    I have finished my first form but can not find how to get to the submit button on the form to add where I want the form to go - how do I get an email address attached to the form?

    Hi Amy;
    A FormsCentral form can be either a web form users fill out in a web browser, or a PDF form (can also be distributed both ways).
    For a Web form the data is always collected by the Adobe FormsCentral servers and is available to view/analyze in your account on the View Responses tab of the form.  There are also options to set up Email Reciepts (to the form filler) and Email Notifications (to you and other users you specify) that can contain the form data.
    For a PDF form you have the option of the Submit button that submits the data to FormsCentral the same as the Web form, and the same Notifications and Reciept options apply here too.  Alternatively you create a PDF in FormsCentral to use however you'd like and can edit in Acrobat and add your own Submit button that emails the PDF or form data back to you directly.  There are a number of tutorials online for adding email "Submit" buttons to PDF and if you are going to edit a FormsCentral PDF you would want to look at this FAQ as well: http://forums.adobe.com/docs/DOC-3661
    I hope that helps, let me know if you still have questions.
    Thanks,
    Josh

  • How can I get one Submit button to perform three actions?

    I have a 2-page form. One page is completed by an HR person, entering fields that describe a new role, new pay, new hours or a new location for an existing employee. The second page automatically repeats the name, location and job role fields, but also completes the IT requirements linked to the job role (such as whether or not the role needs access to a particular piece of software or not).
    The users of the form will have varying degress of IT capability. I wan to enable them to press a single Submit button that does three things: first, print the first page of a two-page form AND e-mail the same page to one e-mail address. Second: e-mail the second page only to a DIFFERENT e-mail address.
    I am not a Javascript expert - or even a beginner. Can anyone help? I need to get this ready for Tuesday! Thanks in advance

    You will need two buttons on your form to be able to do this.
    One is the actual submit button (this will interact with th email system and do the submit). Note that you cannot write programs on a submit button. You will need to make this button invisible to the user. The second button will be a regular button which you can write programs on. Use teh click event of that button. This one will have logic to accomplish the things that you want ...here is some pseudo code to do this:
    use print command and one of the parms indicates which pages to print.
    Set up the submit button to hold the email address of the person recieving it.
    Programmatically click the hidden submit button.
    Note that the user will recieve a dialog from the mail client to OK before teh form will be sent.
    Set up the submit button to change the email address
    Programmatically click the submit button again
    User will recieve another dialog to OK the email submission
    Also you cannot email part of the form it will have to be the whole form. You coudl get a little more sophisticated and hide parts of the form but the whole form will be sent with the emails. This will need more programming on your part.
    Paul

  • How can i disable a submit button and execute submit_action method on click

    Good Day,
    On my page I have a submit button that execute the submit_action method of the page backing bean that submit data captured on the page into a database and activate another class that send mail at the same time on a click of the submit button,the mail process takes a while before returning back to the page.I was able to disable the submit button to prevent the user from keep click while the process is running but the issue is on clicking the submit button it only disable the submit button without executing the submit_action method of the page backing bean.How can i disable the submit button and execute submit_method of the backing bean at the same time.
    Thanks in advance.

    I tried this out on one of my pages to see if it works.
    First, I added the following JavaScript to my submit button's onClick event:
    this.disabled=true; return true;When I clicked the submit button, it was disabled but the form was not submitted.
    I deleted the JavaScript from the onClick event and added the following JavaScript to the form's onSubmit event:
    var button = document.getElementById("form1:submitButton"); button.disabled=true; return true;When I click the submit button, it was disabled and the form was submitted but the button's action method was not called.
    The next thing I tried was to change the onSubmit event code:
    var button = document.getElementById("form1:submitButton"); setTimeout("button.disabled=true", 500); return true;This seemed to work. The difference was that I added a 1/2 second delay before disabling the button.
    See if that works for you. If not then I'm fresh out of ideas.

  • Disabling submit button after resetting the form.

    Hi. I'm new to JSF/Richfaces and there's something I'd like to do that I just can't figure out.
    Currently, I have a form with various fields to be edited, and the standard Submit and Reset buttons. The Submit button is disabled until a user changes a value on the form, and then I enable it using an A4J event. My problem is that I would like to disable the submit button again if the user clicks Reset. I'd like this to be completely client-side if possible, which I understand would require some javascript to implement, but I haven't been able to come up with a solution that works. Does anyone know how I could do this (with an example, preferably)?
    It's a pretty simple scenario, but here's the button code anyway:
    <h:commandButton id="submitButton" value="Submit" action="#{dataBean.submitForm}"
      disabled="#{! dataBean.pageEdited}" />
    <h:commandButton value="Reset" type="reset">
      <a4j:support event="onmouseup" reRender="submitButton" />
    </h:commandButton>

    I see, thanks! I looked up another example on using the DOM (I told you I was new!) and created the following javascript function, and it worked perfectly. I like that it automatically re-renders the button too so I don't need an A4J event.
    function disableSubmitOnReset(){
      document.getElementById('main_form:submitButton').disabled = true;
    }Definitely as simple as I figured it would be. :P

  • Can the submit button be deleted

    For the convenience of our learners, my manager would like me
    to delete the submit button from the multiple choice questions we
    are using in our movie. He would Captivate to provide feedback
    immediately after the learner clicks his/her answer in the radio
    button. Is this possible?
    Note that I have tried making the submit button transparent
    and placing it behind the radio buttons for all answer options.
    When this is done and an attempt is made to click a radio button,
    the radio buttons are unavailable and a failure message appears.
    Apparently, the submit button is over the radio buttons or at least
    not transparent so that they can be affected.
    JazzAl

    Rick:
    One more thought about eliminating the Submit button on
    multiple-choice questions.
    I now know that:
    1. I cannot delete the Submit button from a
    Captivate-generated multiple-choice question
    2. The function that the Submit button performs must be
    retained in multiple-choice questions to enable the scoring
    function, which I want to retain.
    3. Although I can make the Submit button transparent and put
    it in the same location as the answer options' radio buttons to try
    to make the learner's one click (that selects the answer option)
    activate both the radio button and the Submit button, the result of
    the click will be only clicking the Submit button. The radio button
    does not get marked as being selected.
    I would like to do some further work on trying to allow the
    learner to select his/her answer and click the Submit button on one
    click.
    On the theory that the radio button and the Submit button
    cannot be selected in one click because the is because the Submit
    button is in front of the radio button, I wonder if it might be
    worth it to try to go into the files that support the building of
    multiple-choice questions and attempt to change the layering order
    so that the radio buttons are in front of the Submit button? Do you
    think can be done? Do you think it might work? Thanks for any
    insights you might have on this idea.
    JazzAl

  • Fillable form that i can fill in but the submit button wont work

    i have adobe pdf reader that will open a fillable form allow me to fill in the details but the submit button wont work the lap top has windows 8 on my other laptop with windows vista i can fill in and submit the same form help needed please

    also adobe reader touch wont submit either

  • Delete the submit button on the purple bar on a form

    We have created a form that can be filled in by extended rights.  However, we are not using the submit button.  Can the purple bar or the submit button be turned off.  I noticed someone had a green bar without the submit button.  The form was originally typed in Lifecycle.

    The ability to collect responses via Acrobat.com is being phased out: What are my options for hosting shared reviews and distributing forms in Acrobat 9? (Acrobat.com)
    Also see the latest release notes where it says that Acrobat.com forms data collection has been end-of-lifed: 11.0.07 Planned update, May 13, 2014 — Acrobat and Adobe Reader Release Notes

  • I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    I am trying to set up my newly purchased Apple TV but when I enter my network password while setting up, I am not able to enter the Submit button, any idea how to hit the visible submit button that is visible on screen but not responding?

    You need to use the right arrow on the remote to go all the way to the right. The submit button will be highlighted and you can then press select on the remote to proceed.

  • How do i set the email submit button so that the document is sent back to me in PDF and XML?

    I am currently working with Adobe LiveCycle Designer ES 8.2. I was wondering if anyone can tell me if its possible to set the e-mail submit button to send both a PDF and XML file when my document is completed by our suppliers.
    I'm using the XML file to upload the information to Sage via an access database and I need the PDF to send to other departments within our organisation.
    Any help anyone can offer would be great!!!
    Thanks

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • How to set the time in messageTextInut when i am click the submit button

    Hi
    In my form one messageTextInput field and submit button .when i am click the submit button the time (continuously)display in messageTextInput field.so plz tell me the process.

    You can associate a VO Attribute to the textinput field and set its value when the Submit button gets clicked. Thereafter you can renavigate to the same page.

Maybe you are looking for

  • Windows 7 will not start

    Hello, I had an issue during installation of a program and now my windows files are corrupted.  I tried all the basic recovery options, but none worked.  Lenovo's site is a bit difficult to navigate (spent hours looking), so I bring my question to th

  • CRIO: Unflatten from string into lvclass not working in deployment

    Hello, I am working on a problem for some hours now and I need some help. I am using a cRIO-9022. I need to do some tasks, and I created a couple of classes which contain the parameters and the methods. They contain using dynamic dispatch VIs. I have

  • Premiere Pro 5.5 Update

    Hallo! Ich wollte Premiere Pro 5.5.0 auf 5.5.2 updaten bzw. ist das automatische Update aktiviert. Leider scheiterte jeder Versuch. Es kommt immer die Fehlermeldung "U43M1D207". Den Virenwächter hatte ich während des Updates schon deaktiviert. Hat we

  • Droid RAZR M being crazy

    My RAZR M is possessed.  It's lagging when you type.  The screen kind of stutters when you switch between screens.  All of the regular colors are going crazy.  They're going to primary colors, but it's not a permanent thing.  Just every now and then.

  • Trouble starting touchsmart, startup repair 3 times before start, getting error 100c

    i have touchsmart iq500 series, hard drive crashed, was replaced, will not start correctly, have to perform startup repair 3 or 4 times before it will start and reads error 100c