Form question: mailto:

I made a simple form with the intention of allowing viewers
an opportunity to offer feedback. It's directed to an email
address. In testing, when I click submit, the feedback comes up in
email format and the viewer has to click send. Also, the text is
coded with + between each word.
Will this type of form allow the viewer to hit submit and
have the message send directly? And why is the message being sent
with the +?
I don't know if I'm explaining myself right. Please check it
out to see what I mean.
Here's the site:
http://www.adunate.com/kitchenComments.html
Here's the coding:
<div id="form">
<form id="comments" name="Comments" method="post"
action="mailto:[email protected]">
<label> Share your feedback and ideas! </label>
<label><br />
<textarea name="Comments" rows="20"
cols="30"></textarea>
</label>
<div align="center">
<label><br />
<input name="reset" type="reset" id="reset" value="Reset"
/>
</label>
<label>
<input name="Submit" type="submit" id="Submit"
value="Submit" />
</label>
<label></label>
</div>
</form>
</div>

This is because that using the mailto function forces the
users email client to open to send the email, which is very very
annoying. Especially if they don't use outlook. The reason all the
other stuff appears is because your buttons and the values are
being placed within the body of the email.
If you want to send the email directly from the form, you
should use a mail script of your preferred programming language
such as PHP, ASP, or ASP.NET.
My advice, do not use the mailto.

Similar Messages

  • Form Action Mailto email address specified in text box from the user filling out the form??

    I am very new to Dreamweaver and this is likely a very basic question, but never the less, I can't find the answer on Google or in the Help. I want the form below to always be e-mailed to [email protected] and also to the e-mail address supplied by the user filling out the form. The user supplied email address will be in the text box id "SalesEmail" listed below. How can I accomplish this? The user filling out the form would be my salesman, so they need the information, as do I.
    Thanks,
    David
    <form action="mailto:[email protected]" method="post" enctype="text/plain" name="form1" id="form1">
      <p>
        <label for="Name">Name</label>
        <input name="Name" type="text" id="Name" tabindex="1" size="30" maxlength="30" />
      </p>
      <p>
        <label for="CompanyName">Company</label>
        <input name="CompanyName" type="text" id="CompanyName" tabindex="2" size="40" maxlength="40" />
      </p>
      <p>
        <label for="Address1">Address 1</label>
        <input name="Address1" type="text" id="Address1" tabindex="3" size="40" maxlength="40" />
      </p>
      <p>
        <label for="Address2">Address 2</label>
        <input name="Address2" type="text" id="Address2" tabindex="4" size="40" maxlength="40" />
      </p>
      <p>
        <label for="City">City</label>
        <input name="City" type="text" id="City" tabindex="5" />
        <label for="State">State</label>
        <input type="text" name="State" id="State" tabindex="6" />
        <label for="Zip">Zip</label>
        <input type="text" name="Zip" id="Zip" tabindex="7" />
      </p>
      <p>
        <label for="Cell">Cell</label>
        <input name="Cell" type="text" id="Cell" tabindex="8" />
        <label for="Office">Office</label>
        <input type="text" name="Office" id="Office" tabindex="9" />
        <label for="Email">Email</label>
        <input name="Email" type="text" id="Email" tabindex="10" size="40" />
      </p>
      <p>
        <label for="SalesEmail">Your Email</label>
        <input type="text" name="SalesEmail" id="SalesEmail" tabindex="11" />
      </p>
      <p>
        <label for="Notes">Notes or Special Requests</label>
        <textarea name="Notes" cols="80" rows="10" id="Notes" tabindex="12"></textarea>
      </p>
      <p>
        <input name="Submit" type="submit" id="Submit" tabindex="13" />
      </p>
    </form>

    Really needing to finish this before a deadline.  Can anyone help?  Thanks!!

  • Master-Detail Form Questions

    Master-Detail Form Questions
    I have two questions in regards to master-detail forms:
    First, the form I am working on has 25 detail rows displayed to the user. If the user has more than 25 detail records for the master, I want them to be able to add more. For instance, after they enter the 25th record, I would like a pop up window to ask them if they would like to add more detail records for this master. If they select yes, then the records they have entered would be saved and then the form would repopulate with the current master record and another empty 25 detail records.
    Second, I would like the Detail Action to be set to Insert if the user moves to a new detail row and selects an item from a combo box.
    Thanks for any and all help.
    Jeremy.

    Hi Sharmila.
    Is there a way to repopulate only the Master information without populating the detail after the 'Save' button is pressed? I have written code that uses the session variables and repopulates the form with all the data that has just been saved, but I need only the master without the detail.
    Thanks.

  • Object class deployment - Basic form question

    OK, I subclass calendar object from Oracle provided standard
    object class. What do I need to deploy to use this form now
    apart from calendar.pll and my fmx. What about the object class
    from which I sub-class. Do I need to compile and deploy that
    also? How will form resolve this on run time the parent object
    class as I really did not copy, just sub class and we do not
    deploy original class? Basic form question. Thanks.

    You can set the "help" property on the field (which gives you the little "information" icon link beside the field).
    You could also try adding another field of another class above or below:
    <Display class='InlineAlert'/>
    <Display class='ErrorMessage'/>
    <Display class='HtmlPage'/>
    ..etc
    -Rob

  • Outlook Forms question from a business analyst

    I'm not a developer but I would like to use a custom form at an enterprise level. Ideally, we would like to put a "mailto" link in a number of strategic places on our intranet and have that link open a custom form that is prepopulated to go to
    a particular mailbox.
    The form I created uses 4 regions (ideally I would like to display them as tabs... but that's another question)
    A person in our IT said that regions can't be shared at an enterprise level like that. Can someone confirm that and is it that difficult to accomplish what I'm suggesting with basic Outlook features?
    Suggestions?

    web.show_document will never work with 4.5, it wasn't introduced till 9i.
    You need to use the HOST command to invoke the browser, like suggested in the above post. Or you create a batch file that does that and you execute the batch file with HOST command.
    In case you use a batch file, the .bat file should exist on each of the client's machine or on a shared network drive where the client machine can access it, so it's better to use the command directly into the HOST built-in.
    HOST('"C:\Program Files\Internet Explorer\iexplore.exe" www.google.com', NO_PROMPT, NO_SCREEN)
    batchfile content:
    "C:\Program Files\Internet Explorer\iexplore.exe" www.google.com
    HOST('OPEN_BROWSER.bat', NO_PROMPT, NO_SCREEN)For more information on HOST check the Forms builder Help files.
    Tony
    Edited by: Tony Garabedian on Sep 11, 2008 4:06 PM

  • How do I add a Handwritten Signature to my form? And other Form Questions

    Hi there,
    I'm making a form for parents who's kids are going to drive a motorcycle for the first time.
    Now I want to use my laptop with touchscreen for people to fill it in.
    the normal boxes (name, adres etc) with keyboard.
    But the important part is the SIGNATURE which has to be handwritten.
    It's for insurance and legal autorisation from the parents that the kid is allowed to drive and they know the risks and rules.
    How do I add a box in which parents can sign.
    Or is there another solution to make it legal?
    Another question now I might have someones attention:
    After a parent is done filling the form and presses OK or DONE
    Is there a way a parent can choose to use a new blank form or the same form again without date of birth/name/sex
    so he/she can fill the forms faster for the rest of the kids?
    OR
    Is it possible to let a parents say I have 4 kids (with a choice menu)
    and the parent wil get 4 name/age/sex openings and the rest of the form will stay the same?
    And
    Is it possible to export the whole bunch into a excel for easy usage
    Thanks in advance
    and all tips are welcome!
    Love
    Kim

    Just to share some info for this:
    I used to do this sort of thing quite a bit.  What I used was a scanner to scan my hand written signature to an image file.  I would then paste the image file, which supported transparency, over the signature line.  More recently, I used Photoshop to draw a signature saving in a transparent image file.
    Just to warn you though:  you are asking for legal advice, and you are not going to get that here.  I would consult with an attorney to find out exactly what is legal.

  • Reader 9.3.3 Breaks forms with mailto button

    We have been testing Reader 9.3.3 and have just discovered that it breaks one of our online forms that have a mailto button.  We receive an error:
    Security Block: Acrobat does not allow connection to: mailto:maibox name
    It works just fine on any previous versions of 9.3.2 and below but not on 9.3.3.  How can this be fixed? Any registry or preference settings?  The upgrade was rolled out using the Adobe Customization wizard for some upgrades and other upgrades where just performed running msp update files.  Any help or info greatly appreciated.  Thanks
    Hector

    I am using SCCM to deploy the package, but the package is only running this command line:
    AdbeRdrUpd932_all_incr.msp /quiet
    As for which version the form was created, trying to find out from the person that created it.  Thanks

  • Mail Form Question

    Hi Folks,
    I'm VERY new to Dreamweaver, have just created a Mail Form in
    PHP and have absolutely no idea what to do with it now. It's one of
    those typical forms with To:/Email:/Message: I know this is a
    painfully basic question but I can't seem to find the answer in
    books, training videos, my hosting provider, etc. I know I need a
    URL to "point" the file to on the server but my internet host had
    no idea what I was talking about.
    If anyone could help it would be greatly appreciated!!
    Thanks, Cynthia

    you can use php on this hosting?
    I'd suggest using the phpformmail script.
    here's my stock cut 'n paste on what to set to what, and why
    1)go to
    http://boaddrink.com
    -->phpformmail
    download it.
    extract the ZIP file.
    More detailed instructions are in the docs folder
    2) open formmail.php in dreamweaver
    Make the following changes (in code view, turn line numbers
    on)
    2a)
    line 4,
    define('CHECK_REFERER', true);
    change to:
    define('CHECK_REFERER', false);
    reason: too many people use a firewall or Norton security to
    restrict this.
    2b)
    Line 43
    $referers = array('www.example.com', 'example.com');
    change to the domain name of your web site.
    reason: this probably isn't needed since we just turned the
    referrer
    checking off. but change it anyway.
    2c)  *this is to hard-code the recipient address into
    the php
    file, where it is totally invisible *
    Line 46
    $recipient_array = array();
    change to:
    $recipient_array = array('me' =>
    '[email protected]');
    **of course, replace [email protected]  with
    the email address
    you want to receive the form data. Also note the single quote
    marks.
    reason: this sets the email address the form results will be
    sent to.
    You can also make a list of possible recipient alias values-
    see the readme
    in the docs folder.
    2d) give the script a default "From" address to use.
    Go to line 41
    Change:
    define('FROM', null);
    to:
    define('FROM', 'Example Name <[email protected]>');
    substituting your name and email address.
    3) now do a File-->Save As and save this file to within
    this Local Site
    folder. save it as anythingyouwant.php
    4) in dw's File Panel, find anythingyouwant.php and upload it
    to the remote
    site.
    5) Now open your form html file in dreamweaver,
    5a)click the mouse into the form area, and select the
    <form> tag on the
    lower left margin of the design window.
    In the Property Inspector, it should now show the properties
    of the <form>
    tag. In the Property Inspector, to the right of the ACTION
    line, click the
    folder icon and browse to and select the anythingyouwant.php
    file
    you've saved to within this site.
    5b) now click within the form area and go to dw
    menu-->Insert-->Form
    Objects-->Hidden Field
    This inserts a hidden form field.
    In the property inspector, change the NAME/ID of this field
    to: recipient
    And the VALUE of this field to: me
    the code should look like:
    <input name="recipient" type="hidden" id="recipient"
    value="me">
    This tells the script to use the "me" recipient_alias value
    as the email
    address to send the form to.
    5c: Do you have a form field to collect the user's email
    address?
    If yes, if this field is named exactly "email" then the
    script will use the
    user's email as the reply to in the outgoing email
    6) Save and upload the form page.
    Try the form from the website.
    Optional:
    1-make a new page for a thank you for submitting message.
    In the form, insert another hidden field.
    Name: redirect
    Value:  the full absolute
    http:// address to the new thank you page.
    If you don't set a redirect value- the form script will build
    a "thank you,
    here is what you submitted" page. If you want to use that
    dynamic page-
    upload the .css file that it uses.
    2- If you have a field in the form to collect the visitor's
    email address,
    IF you name this field  in the form exactly  
     email   then the visitor's
    email address will be the Reply To address in the outgoing
    email.
    There are 30 or so other optional form fields to control the
    form- see the
    readme in the docs folder. One of those optional control
    fields is
    verification.
    Alan
    Adobe Community Expert, dreamweaver
    http://www.adobe.com/communities/experts/

  • More forms questions, cannot get form to align

    I tried the methods suggested here and at various sites, but could be missing something.
    I cannot get the form to drop into my template. I created one at wufoo and one a freeback, published my site to a folder, then edited the page in textedit by search for my "formcode" word with the html.
    The problem is the form posts at the top of the file and not on the actual page.
    Any ideas why?

    Thanks folks, I went ahead and bought iweb enhancer and it worked where my efforts failed. Very good program and very reasonable price as well.
    Chad, the developer, is amazingly fast with replies to questions and with good advice.
    I can still post the code if you are curious. I really thought I followed your instructions and still could not get it to work.
    thanks again for your replies.

  • Designer 7x Forms Question

    I'm not sure if this question has been asked or not, so here goes.
    I have a list box with 50 different items in it. Depending on the item selected by my user, I want an associated interactive PDF form to be retrieved. I've set up a master page in Designer and have identified a subform (although I'm not sure if that's necessary) and have saved this file as a template.
    I could take the "easy" route of just having bookmarks of all 50 PDF forms but I want to make it work "slick."
    I've been searching through every bit of documentation available trying to see if this is even possible.
    If there's an answer, please keep it as simple as possible. While not completely new to Designer, I'm not a programmer and if this is something that's going to require java scripting then I'm lost.
    Thanks!
    Barb

    Hi Barbara,
    Unfortunately what you want to do will require that you write some java script.
    I have put together a sample with a list box that contains three files. To get the sample to work select the list box, click on the object tab and then on the binding sub-tab. Change the Value of all three Items to point to a different PDF files on your system.
    If you then open the sample in acrobat and select a item from the list the associated PDF will be opened.
    The files are opened by the following line of javascript which was added to the change event of the list box.
    app.openDoc(xfa.form.form1.ListBox1.boundItem(xfa.event.newText));
    The xfa.event.newText returns the text of the selected item.
    The xfa.form.form1.ListBox1.boundItem(xfa.event.newText) returns the value associated with the selected item which is the absolute path of the PDF file to be open.
    The app.openDoc(...) opens the file specified.
    Hope this helps
    Denver
    Adobe Enterprise Developer Support

  • Fillable forms question - FrameMaker to PDF - Without losing copy protection options

    Hello,
    I'm looking for a solution that will allow us to integrate fields in a Chapter Review-style question area where users can comment their answers (instead of using StickyNotes). It must disallow printing/copying etc to meet content protection requirements. I've dug through all of my options and can't seem to find any viable method without allowing the "Edit Content" option which allows users to copy the content.
    We're currently using FrameMaker 9 but will be jumping to TCS5 soon.
    As an example, we would want something like the following question, which exists in a FrameMaker document, to be commented on:
    2. Which DID/DNIS mapping is recommended for mapping a single extension?
    Thank you in advance for any assistance with this.

    > It must disallow printing/copying etc to meet content protection requirements.
    ebook format copy protection is largely an illusion. Leaving aside the availability of euphemistically named "password recovery" software, the widespread availability of low-cost (often bundled free) OCR software means: If you can see it, you can recover the text, unless it's heavily CAPTCHA'd.
    Even if the user is blocked from reading the computer's frame buffer (i.e., prevented from using the PrintScreen key on Windows), most cell phones now have cameras with more than sufficient resolution for full text recovery. Some users even know how to turn off the flash .
    If the supposedly eyes-only document is available on the web, I would not be the least bit surprised to learn that one or more search engines has already OCR'd and indexed every word in it (you can be sure that the NSA's has).
    Managers asking for copy protection need to realize that they are making the authoring task much harder for little benefit, and often creating pointless annoyance for end users. Copy protection might briefly deter casual copiers, but is no obstacle at all to anyone the least bit tech savvy.
    If copy prevention really matters, each copy of the document needs to be computer-generated for the specific licensed end user, with user-customized, easily traced content.
    All that aside, and assuming management can't be dissuaded on the copy protection issue, does TimeSavers support insertion of form fields while preserving security settings?

  • Acrobat Forms Question

    Hi there,
    Quick question on forms, I created some forms in Acrobat, but when the user fills them out, they can't save and email them, it doesn't let them, how do I remove this protection?
    Thanks!

    Acrobat 7.0.9 also lets your users reply to forms with User Rights Enabled (albeit a bit more work in the process in Acrobat 7.0.9 than in 8 ). But it works.

  • Forms question  about exceptions

    Hello,
    I am a newbie and hence my question may find very basic, please help me.
    I have a Pl/sql code where I am executing a queryand if the query doesn't retrieve any values I need to show a message.
    My code is something like this:
    select id from table into tmpid where id=:val_id
    some code here
    CALL_form(url);
    If the query fails I need to show a message, how can I do this. Forgive me for my knowledge in forms, as I am a newbie.
    Thanks in advance.
    Newbie

    Declare
      Found1  varchar2(1);
    Begin
      ...whatever code you need here...
      begin
        select 'Y' into Found1
          from table where id=:val_id;
        exception when no_data_found then null;
      end;
      If Found1 is null then
        Message('No can do!!!');
        Raise form_trigger_failure;
      End if;
      ...some code here...
      Call_form(url);
    End;

  • Forms question - Error validation

    Gurus,
    I have a question .. Please suggest me a suitable answer .. I am using forms 6i, in which i have created a data block (which isnt associated with a table or any procedure), in which i have 3 items, custno (customer number), custname (customer name), toknno (token no)..Its a multi record block (displaying 10 records at a time) ..
    Now when i enter value 1 in custno, ABC in custname, A1 in toknno items, and when i move to the next custno text item, if i once again enter 1 in the custno text item, immediately it should display a message stating that "value has been entered already" ... it should happen only for custno ...
    One important thing is, i amnt saving changes to database .. I amnt marking the text item as a unique key (without marking as unique key in the property sheet), i should get the solution
    Can any guru help me
    Regards

    Hi Here is the code...
    May be it will be useful..
    When-New-Form-Instance
    DECLARE
                rg_name  VARCHAR2(40) := 'RG_EMP';
                rg_id    RecordGroup;
                gc_id    GroupColumn;
                errcode  NUMBER;
    BEGIN
                rg_id := Find_Group(rg_name);
                IF Id_Null(rg_id) THEN
                            rg_id := Create_Group(rg_name);
                            gc_id := Add_Group_Column(rg_id, 'EMP_NO', NUMBER_COLUMN);
                END IF;
                errcode := Populate_Group_With_Query( rg_id,'SELECT EMPNO FROM EMPLOYEE ORDER BY 1');
    END;    
    When-validate-Record
    DECLARE
                rg_name  VARCHAR2(40) := 'RG_EMP';
                rg_id    RecordGroup;
                gc_id    GroupColumn;
                errcode  NUMBER;
                the_rowcount NUMBER;
                V_VAL              NUMBER;
    BEGIN
               MESSAGE(' ');
                rg_id := Find_Group(rg_name);
                IF Id_Null(rg_id) THEN
                            --MESSAGE('rg not exist');MESSAGE(' ');
                            rg_id := Create_Group(rg_name);
                            gc_id := Add_Group_Column(rg_id, 'EMP_NO', NUMBER_COLUMN);
                            Add_Group_Row( rg_id, END_OF_GROUP );
                            Set_Group_Number_Cell( gc_id, 1, :EMPNO);
                ELSE
                            the_rowcount := Get_Group_Row_Count( rg_id );
                            --MESSAGE('record count'||the_rowcount);MESSAGE(' ');
                            IF the_rowcount > 0 THEN
                                        FOR I IN 1..the_rowcount
                                        LOOP
                                                    V_VAL := Get_Group_Number_Cell( 'RG_EMP.EMP_NO', I );
                                                    IF V_VAL = :PARAMETER.P_EMPNO THEN
                                                                MESSAGE('DUPLICATE RECORD');MESSAGE(' ');
                                                                RAISE FORM_TRIGGER_FAILURE;
                                                    END IF;
                                        END LOOP;     
                                        Add_Group_Row( rg_id, END_OF_GROUP );
                                        Set_Group_Number_Cell( 'RG_EMP.EMP_NO', the_rowcount+1 , :EMPNO);
                            ELSE   
                                        Add_Group_Row( rg_id, END_OF_GROUP );
                                        Set_Group_Number_Cell( gc_id, 1, :EMPNO);
                            END IF;
                END IF;
    END;     Check it.....
    One more thing is U need to check that Column data type .whenvever u r adding a column in Add group column check whether is it number_column and char_column like wise u should give and Same as in Get_group_number_cell and set_group_number_cell .

  • Enrollment form question

    Hi,
    I have a quick question (or maybe) two about sending enrollment form. Do I have to wait for enrollment form to be accepted, before submitting application ? I've read already in some other post that I do not have to, is that right ? As far as I understand, the enrollment form will be needed only in case, when total value of all sold copies exceeds 100$, right ? And finally, what about Intel AppUp, does it work the same way as for Marketplace ?
    Thanks for any clarification and answers to these questions!
    best regards
    Mateusz

    Hi Mateusz,
    Enrollment form is not required for free application. If you are submitting a paid application, you can submit your enrollment form after publishing the application. You need to ensure that you have submitted the enrollment form in order to get paid for your application that you distribute through AIR Marketplace or through your own website.
    Both Intel's and AIR Marketplace's payment policies are covered in the InMarket documentation: http://learn.adobe.com/wiki/display/InMarket/07+Settlement+and+Payment
    I would highly recommend you to go through it as it covers detailed answers to all your questions.
    Let me know if you have any further questions.

Maybe you are looking for

  • Music synch issues

    So when I try to synch my new iphone 4S with itunes 90% of my songs do not synch and I get a ! next to them in the library which never happened. then I get a note saying itunes cannot find the music even though the songs are in my purchased file. Wha

  • Hash mismatch error when downloading OS X Mountain Lion

    I have an updated system for mac pro (bought first week of June 2012). Was trying to download OS X Mountain Lion several times but I keep getting the "can't download app hash mismatch" error notification. Would appreciate helpful tips!

  • After Safari Update, MS Word won't save

    Has anyone else gotten the latest Safari update download, and found that MS has lost its ability to save newly created docs? The Safari update was what I did immediately before Word went funny. A reinstall of Word (Office Mac 2004) didn't help. Using

  • Cisco Prime Infrastructure, trial version

    I am trying the Cisco Prime Infrastructure, trial version. In client management I can see only 802.3 clients, but not clients directly attached to the switch ports. Finding where a client, searched by IP or MAC address, is connected, is a mandatory n

  • I recieve phone call from my iphone but i can not make a call from my mac

    I recieve phone call from my iphone but i can not make a call from my mac What shall i do