Form Submit problems not email field??

I tested the form and it works fine except for the email
address which is not being sent from the form. There are no errors
when I submit or when I check the syntax in Flash c3.
I do notice in the aciton script window all of hte variables
name and cooments are blue bu the email is just black.
I am a beginner learning flash and I used a video tutorial
form lynda.com I notice in the tutorial it was also balck but hey
did not test it.
What to do??

quote:
Originally posted by:
INVT
I tested the form and it works fine except for the email
address which is not being sent from the form. There are no errors
when I submit or when I check the syntax in Flash c3.
I do notice in the aciton script window all of hte variables
name and cooments are blue bu the email is just black.
I am a beginner learning flash and I used a video tutorial
form lynda.com I notice in the tutorial it was also balck but hey
did not test it.
What to do??
Server side issue fixed it so never mind.

Similar Messages

  • Many of our form submissions do not generate an email notification.

    Any ideas why about 30% of our form submissions do not generate an email notification?  We use FormsCentral for a rental reservation form and we have lost several rentals recently because we never knew about the reservations.  We hate to abandon all of the work we put into making this form work so any help is appreciated. Otherwise, we will leave Adobe very soon.

    Hi,
    The E-mail template is actually works as an HTML or CSS page. You need to use the HTML/CSS formats to send these values in the format as you want. Use <tags> to do the formating of Email template. 
    Use function to store multiple values and thn use them into Email 
    I hope this will help. 
    Thanks~ Giriraj Singh Bhamu

  • Web form submit to external email address

    I am trying to submit web form to email on external email server.
    I have followed the following: however - I get email message as the Administrator that this email address does not exist in the system.  Is it even possible to route to external email server?? Am I missing something?
    &Email=[email protected] - The email adddress to which the submission is sent. Replace “[email protected]” with your email address.
    Note: The email address that will be receiving the form submission must exist in either your sites CRM (customer database) or be a admin/email user of the site.
    If the email address being used to receive these form submissions does not exist as a site user or in the CRM, then the email will not be sent. A notification will be sent to the partner of the site advising them of this requirement.
    &Subject=This+is+email+subject - The subject of the email. Make sure you separate each word in the subject with the + (plus) sign.
    &EmailFrom=[email protected] - The from email address. Replace [email protected] with the email address you want to use for the submission.
    &PageID=/DestinationPage.html -  The URL of the landing page presented to the visitor after the web form has been submitted.

    Hi there.
    To not use the Form to CRM/Case form in BC you need to update a forms action as outlined in the guide here:
    http://kb.worldsecuresystems.com/kb/setting-form-email-using-web.html
    You pasted some of it But your post is a bit messed up I think. have ou updated the action? Got a link to the form?

  • Interactive PDF Form Submit Button Not Working

    Hi there,
    I created an Interactive PDF in InDesign with a form included in the document. When I export as an interactive PDF my Adobe Reader will allow me to fill out the form no problem, however, when I click submit to connect the form to my email, it says "operation not permitted". Any ideas on how to fix this issue?

    Reader prior to version 11 cannot save the document unless it is Reader-enabled, which you can do with Acrobat. Exactly how depends on which version you're using. In Acrobat 11: File > Save as Other > Reader Extended PDF > Enable More Tools

  • Forms - submit button not working

    A client asked me to create an eflyer with a registration form included to be emailed out. I added form fields to the form page and an email submit button. Works fine on my Mac - opens Entourage correctly addressed and with the xfdf file attached. Tested on Parallels Desktop running Windows XP Pro and this seemed to work too. However when my client tested it on her PC, when she clicked on the submit button nothing happened. It works for her on the web but understandably she want's it to work when people receive the PDF as an attachment to an email. She uses Outlook as her email client.
    Any thoughts? Many thanks.

    Mike
    Thanks for your comment. I've sent a new PDF to the client with the extended rights turned on and this still doesn't work, as you thought. I know I've read about how unreliable emailing PDF forms can be but I wanted a simple solution on a document that my client wants to email to her contacts. Maybe it's just not a good idea to start with though you'd think that seeing as how adobe have added the feature it might just work! When I tried on Windows running on my Mac when I clicked send it asked me whether I wanted to use local or web-based email which implied you could use either? (I don't have an email client currently set up under windows as I only use it for opening the odd PC only file that clients send me which is I guess why it asked the question rather than chaining straight into an email window).
    I'm attaching the document in question. The form is on page 3.
    Many thanks for your support

  • Code issue in php form - submit button not sending email

    Created a form that was originally supposed to open up to 2 pages depending on what was clicked. Clear would send you to an error page, and submit would send you to a thank you page. Decided that was a waste and so did not create the html pages. BUT, wanted the form info for the contact page.
    Here is the issue: it will not submit when submit is clicked. It clears when you click clear, but there's no email coming from the site via submit.
    Do I need to edit the php form code if I don't want the other pages? I've looked at what I have but I don't see if there is a form error or anything here. Here is the code for anyone who wants to have a look. Thanks in advance.
    <?php
    // get posted data into local variables
    $EmailFrom = "EMAIL FROM WEP PAGE - CONTACT - ";
    $EmailTo = "[email protected]";
    $Subject = "EMAIL FROM jennylowhar.com - CONTACT -";
    $name = Trim(stripslashes($_POST['name']));
    $telephone = Trim(stripslashes($_POST['telephone']));
    $email = Trim(stripslashes($_POST['email']));
    $comments = Trim(stripslashes($_POST['comments']));
    // validation
    $validationOK=true;
    if (Trim($name)=="") $validationOK=false;
    if (Trim($email)=="") $validationOK=false;
    if (!$validationOK) {
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.html\">";
      exit;
    // prepare email body text
    $Body = "";
    $Body .= "name: ";
    $Body .= $name;
    $Body .= "\n";
    $Body .= "telephone: ";
    $Body .= $telephone;
    $Body .= "\n";
    $Body .= "email: ";
    $Body .= $email;
    $Body .= "\n";
    $Body .= "comments: ";
    $Body .= $comments;
    $Body .= "\n";
    // send email
    $success = mail($EmailTo, $Subject, $Body, "From: <$EmailFrom>");
    // redirect to success page
    if ($success){
      print "<meta http-equiv=\"refresh\" content=\"0;URL=thankyou.html\">";
    else{
      print "<meta http-equiv=\"refresh\" content=\"0;URL=error.php\">";
    ?>

    I'm confused by that, but I know this works.
    $fname=STRIPSLASHES($_POST['fname']);
    $lname=STRIPSLASHES($_POST['lname']);
    $title=STRIPSLASHES($_POST['title']);
    $company=STRIPSLASHES($_POST['company']);
    $street=STRIPSLASHES($_POST['street']);
    $town=STRIPSLASHES($_POST['town']);
    $zip=STRIPSLASHES($_POST['zip']);
    $phone=STRIPSLASHES($_POST['phone']);
    $fax=STRIPSLASHES($_POST['fax']);
    $county=STRIPSLASHES($_POST['county']);
    $phone=STRIPSLASHES($_POST['phone']);
    $email=STRIPSLASHES($_POST['email']);
    $comments=STRIPSLASHES($_POST['comments']);
    $date=STRIPSLASHES($_POST['date']);
    $time=STRIPSLASHES($_POST['time']);
    $location=STRIPSLASHES($_POST['location']);
    $from="$email";
    $to="putemailhere";
    $subject="Submission from Contact Form";
    $msg= "This is a submission from yoururl.com.\n\n"
    . "Clients Name: $fname . $lname \n"
    . "Title: $title\n"
    . "Company Name: $company\n"
    . "Street Address: $street\n"
    . "Town:$town\n"
    . "Zip: $zip\n"
    . "Telephone: $phone\n"
    . "Email Address: $email\n"
    . "Comments: $comments\n";
    mail($to, $subject, $msg, 'From:' .$from);
    PS, go back and edit your origial post and REMOVE your email.
    Gary

  • Acrobat Form Submit button not working with Reader

    I created a form using Acrobat Pro 9 with a submit button function. When I email the form to users they are only allowed to submit the form if they have Acrobat Standard or Pro. For users that have Acrobat Reader they are able to open complete the fields and print the document but are unable to use the submit function. They receive the following message "This operation is not permitted". 
    I need all Adobe users including Reader to be able to submit this form. How do I fix this?
    Help is greatly appreciated!!

    You need to Reader-enable the form in Acrobat by selecting: Advanced > Extend Features in Adobe Reader
    This is because the form needs to be saved before it is attached to an email, and Reader normally cannot save a modified form. Reader 11 is able to save a modified form, however.

  • Form submit problem - help please!

    I am new to this forum and to using forms, so I hope I am posting this in the correct area. I want to have a Volunteer Application form and I set it all up but the first time through I mistyped my email address. Since then I have tried MANY different things to try and fix this including starting from scratch, resaving my email address with adobe's website, and then I finally removed the submit email button altogether. BUT, next to Highlight Fields there is a Submit button and and that still submits to the wrong address!
    I check the xml source and it shows the email address correctly - but under advanced setting in Acrobat I see: http://ns.adobe.com/AcrobateAdhocWorkflow/1.0/ and then further down the list is:
    adhocwf:initiator:mywrongemailaddress
    I would greatly appreciate any help at all on how to fix this.
    Thank you.

    Hi,
    There are many ways to set up a Submit button, but the way you are describing is using the "Email Submit" button in LC Designer. You can change the email address here:
    If on the other hand you have used a Regular Button and changed the type to Submit, then you would access the email via the Submit tab:
    That deals with the LiveCycle side of things.
    The next step is if you had Reader Enabled the form in Acrobat. What happens next depends on the version of Acrobat you have, but if it is Acrobat version 8 or 7, then the step to Reader Enable the form is to Distribute the form via the Form menu. See this example/summary with screen shots: http://assure.ly/etkFNU .
    If you have made a mistake during this process, then you may have affected your ID in Acrobat preferences. I can't do a screenshot for Acrobat version 8 or below, But if you have a look in Preferences (from the Edit menu) and go to the Identity tab, check your email address there:
    This is Acrobat X:
    Hope that helps,
    Niall

  • Form.submit() Problems in Firefox3.5.9

    When posting a form via javascript, the receiving page cannot address the posted form
    == This happened ==
    Every time Firefox opened
    == We upgraded to 3.5.9 ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.55 Safari/533.4

    quote:
    Originally posted by:
    INVT
    I tested the form and it works fine except for the email
    address which is not being sent from the form. There are no errors
    when I submit or when I check the syntax in Flash c3.
    I do notice in the aciton script window all of hte variables
    name and cooments are blue bu the email is just black.
    I am a beginner learning flash and I used a video tutorial
    form lynda.com I notice in the tutorial it was also balck but hey
    did not test it.
    What to do??
    Server side issue fixed it so never mind.

  • Is there a way to have form submissions show submitters email address?

    Hi there...
    Was just wondering - is there a way to show the form submitters email address as the "From" email address when receiving a notification from the contact form?
    There's a setting that allows the form details to be sent to an email address, but that email is from the user or the site itself, so if you "reply" from within your email client, you're effectively emailing yourself...
    Do I have to create a new workflow as in this thread?
    http://forums.adobe.com/message/4393711#4393711
    I'm sure it's blindingly obvious, but I can't see what the people in the above thread see...
    Cheers, Dave

    Hi Dave,
    The proper way to do it is when you get a workflow or submission notification it automatically creates a 'Case' in the site admin.
    It is also listed in your live feed on your dashboard.
    So  the next steps would be to go to that case in the admin and reply there. It will keep a record of your reply within the admin and it will send to the user.
    Brad Lawryk
    ======================
    Auroratec Business Solutions
    http://www.auroratec.ca
    Phone: 250-855-8835     
    =====================================
    Adobe Community Professional: Dreamweaver
    Adobe Business Catalyst: Premium Partner
    My Adobe Blog: http://blog.lawryk.com

  • Outlook pops out on form submit

    I am making a form on Dreamweaver CC and I want to integrate that form in a Muse website and when I click submit, a window from Outlook pops out to send an e-mail to the recieptient e-mail.
    I already read here but I don't know if I can integrate a PHP script with Adobe Muse files on my server. Would they enter in conflict or that's fine?
    This is the code of the form:
    <form action="mailto:[email protected]" method="get" enctype="text/plain" name="form1">
    <p>
      <label for="textfield"><strong>Name:</strong></label>
      <input type="text" name="textfield" id="textfield">
      <label for="email"><strong>Email:</strong></label>
    <input type="email" name="email" id="email">
    </p>
    <p>
      <label for="textfield2"><strong><br>
        PICK-UP<br>
        <br>
        Location:</strong></label>
      <input type="text" name="textfield2" id="textfield2">
      <label for="date"><strong>Date:</strong></label>
      <input type="date" name="date" id="date">
      <label for="time"><strong>Time:</strong></label>
      <input type="time" name="time" id="time">
    </p>
    <p>
      <label for="textfield3"><strong><br>
        DROP-OFF<br>
        <br>
        Location:</strong></label>
      <input type="text" name="textfield3" id="textfield3">
      <label for="date2"><strong>Date:</strong></label>
      <input type="date" name="date2" id="date2">
      <label for="time2"><strong>Time:</strong></label>
      <input type="time" name="time2" id="time2">
    </p>
    <p>
      <label for="textfield4"><strong><br>
        Type of Car:</strong></label>
      <input type="text" name="textfield4" id="textfield4">
    </p>
    <p>
      <label for="textarea"><strong><br>
        Notes/Extras:</strong> <em>(i.e.: GPS, Baby Seat, etc...)</em><br>
      </label>
      <textarea name="textarea" id="textarea" cols="45" rows="5"></textarea>
    </p>
    <p> </p>
    <p>
      <input name="submit" type="submit" id="submit" formaction="Submit Form" formmethod="GET" value="Send">
    </p>
    </form>
    Waiting an answer.
    Best wishes,
    Miguel

    Mailto: links on form submit are not reliable for several reasons.
    Most web mail users do not have Outlook or similar e-mail clients installed on their system. When they click your submit button, nothing will happen.
    Mailto: links do not hide your e-mail address from harvesters and spam bots. 
    Your form is not secure from spam bots and hackers.
    AFAIK, Muse does not support server-side scripting.  But that shouldn't preclude you from using a contact form with a separate form-to-email processing script.  You point your HTML form to the script using the action attribute.
    <form action="your_script.php"
    Which script depends on your server.  Ask your hosting provider if they have scripts you can use.  If they don't, find out which server-side languages your hosting plan supports -- php, asp.net, coldfusion, perl, etc...
    This will narrow your search form appropriate scripts you can use.
    Nancy O.

  • Vendor master EMAIL field data

    dear sir,
    i need to have the list of all my vendor Emails which are mentioned in vendor master.we create the vendor centrally by XK01, i tried with MKVZ and LFA1 table.
    but the problem is email field (SMTP_ADDR is in SZA1_D0100-structure.
    can any body help me how to download the same details?

    Hi
    You have to create SAP query to get the Vendor e-mail id.You have join two tables LFA1 and ADR6.
    In LFA1, each vendor assigned with one address number LFA1-ADDNR.With reference to this address number the Data like email ID etc stored in ADR6 table.
    SO you need find out ADDNR in LFA1 and use this number to get the E-mail ID of vendor from ADR6 table.To achieve this , you can write sime SAP query.
    Regards
    Ramakrishna

  • Form submit on image click

    I am having trouble with a image submit button.  here is my code:
    <form action='' method='post'><input type='image' src='http://www.mysite.com/images/star.png' width='20' height='20' title='Click to unstar this message' name='unstar' id='unstar' /></form>
    (single quotes since this will be echoed)
    if(isset($_POST['unstar'])) {
        echo "good!";

    If ColdFusion told you form.submit does not exist on the action page, then ColdFusion would have lied a bit. It in fact exists, but not in way you expect. Ask yourself this: what do you expect to be posted to the action page when you click on the image? Adam answers the puzzle.
    The name we give something can affect how we subsequently think about it. I would name the tag as follows:
    <CFINPUT type="image" name="img"  src="../../../Media/Images/CommentForm/Submit.jpg" align="middle">
    This reduces the possibility of confusion, and also ties in naturally with the value in the action page.

  • Email Submit Button not Submitting Full Form

    Hi guys
    I'm new to LiveCycle Designer, so my problem may be something very simple that I have missed.
    I have a simple form which I intend to use for my clients to book training sessions with. It will be emailed to them or downloaded from my website to be completed and the submitted to me via the email submit button on the bottom of page 2.
    My form doesn't have any fancy coding or dynamic content - just simple text fields and drop down boxes. The subform spreads 2 pages and everything is included in just the one subform.
    The email submit button composes an email with the xml file attached, but the xml file only contains the data from the tabulated fields on page 2 - page 1 is completely ignored.
    Can anyone help me out with this please, I'd really appreciate it.

    Hi,
    If you look at the Object / Binding tab and then select the various subforms and objects. You will see that on page 1 these are set to "None"; whereas you will need these set to "Normal", like the table on page 2.
    If the binding is "None" then an xml submit will not return these values. If the binding is "Normal" then the data will be returned.
    Good luck,
    Niall

  • How do I use Submit by Email button to submit form as document, not data file?

    How do I use Submit by Email button to submit form as document, not data file?

    Hi
    Just configure your submit button to submit as PDF instead:

Maybe you are looking for

  • Input help for cost center & WBS element not working

    Hi ALL We are using SRM 4.0 with backend ECC 5.0. Input help for attributes cost center (CNT), WBS element (PRO) are not functioning. When tried to search for input help (F4) on the above attributes, I am getting message "Display not possible (Incons

  • Editable Table Sort Action

    All, We have a requirement where user can perform inline table (af:table) edits. If the user after editing few columns, tries to sort/applies a filter, the table refreshes and all the uncommitted data is lost. Any suggestions/workarounds on how we co

  • Error (-50) when syncing photos to the iPad

    When it starts to sync, and the photos are selected, itunes displays the message 'An unknown error (-50) occurred' With the iPad 2 and iPhone 5. I already formatted all Macbook, iPad and iPhone devices. What do I do??

  • Error in importing flow of 0CFM_C10 in BIQ

    Hi all, i did like this: collected all obj relevant to 0CFM_C10 , as before and after in transport connection tab. first imported ECC TR having these 2 datasources to ECQ. 0CFM_INIT_POSITIONS 0CFM_DELTA_POSITIONS then tried importing BI side TR in BI

  • Import TV shows

    Is it possible to "import" a TV show that I have recorded on my computer into itunes? or can you only watch TV shows and movies that are "purchased" through itunes?