Dreamweaver CS4 - emailing a submitted Form

I am a novice at websites - and moreso with Dreamweaver!
I have finally designed a simple form with a SUBMIT button. I am trying to have the user submit the form to my email address. In the "Action" box, I have entered the following :  mailto:[email protected] .
On hitting the SUBMIT button, Outlook Express opens and opens a "New Message" - with no sign of the Form!
Please help !!
Roy  

As you have discovered, "mailto" is a command that opens the default email application on your computer.
The way to get someone to fill out a form to send mail to your email account is to use server-side code. Server-side code is read by your host server and interpreted. Your host server will be able to interpret ASP or ASP.NET code (if it's a Microsoft server), Adobe's Cold Fusion (if it has that installed) and/or php, which is Open Source. Most hosting servers provide you with php.
In order to tell a server to interpret code, you have to tell the server what to expect and the universal way to do that is to place code into the web page in Dreamweaver and then change the extension of the page. When Dreamweaver makes web pages, it gives them the .html extension. If you insert Adobe Cold Fusion code, you need to change the extension to .cf If you are using php, the page must end in .php
I do have a very useful php form that works perfectly for sending email and I would be very happy to post it if your server uses php.
So find out what your web host uses and get back to me. I'll create the form for you if it's what I work with. You can also ask in the Dreamweaver Application Development forum for other languages.

Similar Messages

  • Change sender email for submitted Form emails

    I built a website for a client using Muse and the Form widget through Business Catalyst. However, now whenever the client gets emails from a submitted form, it says its coming from MY email. How do I change the sender so that they recognize that it's not a personal email from me, but rather a submitted website form. Hope that makes sense!

    UPDATE: I just figured it out after having posted this no less than 10 mins ago. Thanks community, your genius overflowed to me and helped me solve my own problem. For anyone who is curious, in the Business Catalyst Admin Console, Under the Site Manager tab in the menu, you simply click "System Email" and the "Set default from email."   I can't believe I missed that, and I call myself a professional. Hope it helps someone else!

  • Forms with Dreamweaver CS4?

    Hi All,
    Does anyone have a link or tutoral on how to create a form in Dreamweaver CS4. I need to make a "Request a Catalog" Form.
    I especially might need the most help on figuring out on how to receive the info thru my email.
    many thanks,
    Alex

    HTML forms don't do anything without an Action.  You can use Mailto: but this is just asking for Spam and limits the usefulness of your form.  Your best solution is to use a form processing script with spam controls built in.
    Ask your host if they offer any form-to-email processing scripts you can use... or which flavor script you can use on your server (PHP, ASP, ASP.net, ColdFusion, etc...)
    Form Services and Script generators
    http://wufoo.com/
    http://www.bebosoft.com/products/formstogo/overview/
    FormMailer.PHP script
    http://dbmasters.net/index.php?id=4
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    www.alt-web.com/
    www.twitter.com/altweb
    www.alt-web.blogspot.com

  • Dreamweaver CS4 - Record Insertion Form js error

    Hi
    I'm dreamweaver cs4 and started using the Record Insertion form, I was mainly experimenting with it and just seeing what it could do.
    However when I get to the wizard i have to wait a few seconds for it to connect to the database and then I get an error message that says:
    While executing onLoad in ServerObject-InsRecPHP.htm, the following Javascript error(s) occured:
    At line 283 of the file "Macintosh HD:Application:Adobe Dreamweaver
    CS4:Configuration:Commands:ServerObject-FormCmnPHP.js":
    invalid array length
    I was just wondering if this was a common problem, or I've messed something up either in Dreamweaver, or in the SQL database that I'm using.
    I've also noticed that its the same for Update and Delete Records Wizards aswell.
    Any help would be greatly appreciated
    Aaron Kennedy

    I see it's your first post. Welcome to the forum.
    A good place to start looking for answers is the Dreamweaver FAQ. You'll find the answer to your question under "Crashes, installation, JavaScript, and unexplained problems".

  • Dreamweaver CS4 - Dynamic Form Question

    Hello you all.  I've been tasked with developing a form for my company that allows a user to add as many contacts into a form field as they like, i.e., they would enter a contact first and last name and then click on a "+" sign or button to add another name etc.  The "+" or Add button would shoot each name into a database and display it above the new blank field.
    I am familiar with developing regular static forms but nothing dynamic like this.  I know explaining this to me from start to finish is out of the scope of this forum, but where do I start.  Does Dreamweaver CS4 have some type of widget or Java addon that will allow me to generate this type of field and then I can tackle the database setup at another time?
    Any help would be much appreciated!

    Have a look at the following, just copy and paste in a new document and test in a browser
    <!DOCTYPE HTML>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
    .clickable {cursor: pointer;}
    #fullname2 {visibility: hidden;}
    </style>
    </head>
    <body>
    <form action="" method="get">
    <input name="fullname1" id="fullname1" type="text"><span id="add1" class="clickable"> +</span>
    <br>
    <input name="fullname2" id="fullname2" type="text">
    </form>
    <script src="http://labs.adobe.com/technologies/spry/includes/SpryDOMUtils.js"></script>
    <script>
    Spry.$$("#add1").addEventListener("click", MyOnClickHandler, false);
    function MyOnClickHandler() {
         Spry.$$("#fullname2").setStyle("visibility: visible;")
    </script>
    </body>
    </html>
    Gramps

  • Change subject line of email when submitting a form using Acrobat X Pro

    I have created an interactive PDF in Acrobat X PRO with a submit a form button. Everything works fine all the way through distribution except that I need the Subject Line of the submitted form when attached to an email to read "Form Returned: File Name" rather than "Submitting Completed Form". All of my past forms had the "Form Returned: File Name" subject line automatically...did something change and is it possible to change the subject line? Any help would be much appreciated.

    Thank you for your reply. I had actually come across that form on multiple occasions during my research. Looks like I need the doc.mailDoc() function, but there isn't an example of the code. Looking in other places I have tried a few things unsuccessfully. I did find this, which I thought would be even better than Form Returned: File Name in the subject line...actually taking information from fields in the form:
    // Build the subject line text from several fields form fields
    var subj_text = getField("text1").valueAsString;
    subj_text += getField("text2").valueAsString;
    subj_text += getField("text3").valueAsString;
    // Send the email
    mailDoc({
        cTo: "[email protected]",
        cSubject: subj_text,
        cMsg: "Body of email message goes here."
    I entered the script(adding in my own information for the email, body and subject line) by adding an action to the button to run the java script but it did not work. Any ideas??

  • Email with attachement as pdf of submitted form

    Hi all,
    Can anyone suggest me how to get an email as an acknowledge ment with the submiteed form as an pdf format.?
    I want to get an acknowledgement mail after submitting the form through the work space..
    and email should contain the submitted form as an attachment in a PDF format
    Please assist...
    Thank you

    You can add an email submit button in your form to achieve this.
    Check this - http://help.adobe.com/en_US/livecycle/9.0/designerHelp/index.htm?content=000323.html and http://help.adobe.com/en_US/livecycle/10.0/DesignerHelp/WS107c29ade9134a2c5324ea7712a81c8d a6b-8000.html
    Som more pointers which could help
    https://groups.google.com/forum/#!topic/livecycle/81OXCQfsNys
    http://livecycleapps.wordpress.com/2008/07/28/a-submit-button-that-will-send-an-entire-pdf /
    ~ Varun

  • Email from Adobe: Your Adobe Dreamweaver CS4 trial has expired

    I just got a strange email:
    Subj: Your Adobe Dreamweaver CS4 trial has expired
    From: direct at adobesystems dot com
    The strange part is that I have never downloaded any CS4 product, DW or other. At first I thought it might be some sort of phishing email, but the links inside definitely go to adobe.com pages.
    Anybody else (who hasn't downloaded a trial) get one of these? Is this some sort of new marketing method?
    I did download and install Spry 1.61 trial into CS3 42 days ago, but no CS4 products. Would that trigger a DW CS4 expiration notice?
    Mark "Not ready for CS4" Boyd
    Keep-On-Learnin' :-)

    Mark A. Boyd wrote:
    I just got a strange email:
    Subj: Your Adobe Dreamweaver CS4 trial has expired
    From: direct at adobesystems dot com
    The strange part is that I have never downloaded any CS4 product, DW or other. At first I thought it might be some sort of phishing email, but the links inside definitely go to adobe.com pages.
    Anybody else (who hasn't downloaded a trial) get one of these? Is this some sort of new marketing method?
    I did download and install Spry 1.61 trial into CS3 42 days ago, but no CS4 products. Would that trigger a DW CS4 expiration notice?
    Mark "Not ready for CS4" Boyd
    Keep-On-Learnin' :-)
    That is very odd Mark, they must have you in there system somewhere, and have got very confused. I did once download the trial, but never got an email.
    Bit confused about the Spry 1.61 trial, whats that then? I thought Spry was free, and hence no trial.
    Steve

  • Dreamweaver CS4 html email absolute paths help

    Anyones help would be so great to this! I am going crazy.
    I have read all posts I can find on creating HTML emails. I find that images in DreamWeaver need to have absolute paths. Ok, I will try to be as clear as possible.
    I created the page (email) in DreamWeaver CS4. I connected to my server fine to get access to my images. I also uploaded the index.html file in the server file with the images.
    I used Cyberduck to upload the images to my server once I created an FTP Account. Creating the account gave me:
    Manual Settings
    FTP Username: [email protected]
    FTP Server: ftp.toledocitypaper.com
    FTP Server Port: 21
    SFTP Server Port: 22
    Within Cyberduck it explains:
    ftp:toledocitypaper.com
    ftp://[email protected]@ftp.toledocitypaper.com//[email protected]@ftp.toledocitypaper.com
    Here I find one issue: I created a folder called citytest with my images and when I click Open URL the page opens blank. Here is the URL it generates:
    http://ftp.toledocitypaper.com/citytest/ADAMSNEWScitcroppedy_01.jpg
    Now I need to generate absolute paths for the images in DreamWeaver. I would think you need to put the http address in the SRC field? Now with files located and dragged and dropped on my page I get a input such as ../Library/Application Support/Adobe/Dreamweaver CS4/en_US/Configuration/ServerConnections/Unnamed Site 5/citytest/ADAMSNEWScitcroppedy_15.jpg
    Can anyone explain how I can make an absolute path for these images? everything I have enetered for the SRC image doesn't work. I get an image with a broken link when I enter any info I have found.
    I also prievewed the html file in Safari and it looks fine with images dragged from server Local files in DW. I click Mail Contest of this page then it shows up in my Mac email as outgoing image. Looks fine for a second then all images turn to Missing Plug-in. The images I tried to enter a URL for in the SRC show up as little blue boxes with question marks.
    I have a feeling I need a working URL to these images and I have no idea what this is. If this helps we use Gator Host.

    If you have uploaded your citytest folder with images to the root folder on the server,
    the proper link would be http://toledocitypaper.com/citytest/ADAMSNEWScitcroppedy_15.jpg

  • Contact Form - Email forwarding from user submitted forms

    How can one have the user's submitted email address in the from dialog instead of the adobe user account email. My client would like to be able to use the reply button in there email client instead of starting a new email. At the moment all the submitted forms come from my adobe account and use my name instead of the user's name the submitted the form. This makes tracking submitted forms more difficult. Is there a solution available?
    Thanks,
    Graeme

    You can set the 'from' email address after you log in to your website admin.
    You can get there by clicking the 'manage' button in Muse, or pointing your browser to yoursite.businesscatalyst.com/admin
    Then click 'Site Manager', then 'System Emails', then 'Set Default 'From' Email'

  • Email Notifications for Forms Submitted

    How can I be sure that I am notified by email when a form has been submitted?

    You can turn on notifications by going to Options tab -> Notifications.
    Randy

  • Submitting form by email

    Hi,
    I have created a form and sent it to a customer to test it before I distribute it to all my customers. He filled in the form and clicked submit by email. It opened his Microsoft Outlook and populating the email with the form as planned, but when he click send the email wouldnt send. He kept clicking and clicking and clicking and it eventually went.
    Is this normal or is there something I am doing wrong?
    Cheers

    I would try with few other customers. I have never seen such behavior. It may be just local to one machine. Once the email gets composed the form is nothing to do with the composed email.

  • Can I transfer the font list into Dreamweaver CS4?

    Hi and thanks for reading,
    I just installed Dreamweaver CS4 after depending on DW 8 for
    the last few years. It's a fantastic upgrade. But I miss my old
    font list. I spent a lot of time creating a great list of cascading
    fonts for my style sheets in DW 8. Is there any way to grab that
    list and import (if that's the right word) it into Dreamweaver CS4?
    I'm referring to the list of installed fonts that DW displays
    after typing the CSS font property.

    > In Vista, does is customized version there or in
    > %USERPROFILE%\AppData\Roaming\Adobe\Dreamweaver CS4\...
    I think it can go either place. The former location is
    vulnerable to a
    reinstall, though, while the latter is not. I'm assuming
    that's what you
    are asking....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Mark A. Boyd" <[email protected]> wrote in
    message
    news:[email protected]..
    > Murray *ACE* posted in macromedia.dreamweaver
    >
    >> There is an XML file that contains this information
    too, you know?
    >>
    >> Program Files/Adobe/Dreamweaver
    >> CS4/Configuration/Fonts/fontStrings.xml
    >>
    >> (on PC, of course)
    >>
    >> I don't know if this is also available in DW8.
    >
    >
    > Must be new with CS4. That was the first place I looked
    for CS3, but
    > now that I have my (Macromedia) DW8 box running, I don't
    see the
    > folder there, either.
    >
    > In Vista, does is customized version there or in
    > %USERPROFILE%\AppData\Roaming\Adobe\Dreamweaver CS4\...
    >
    >
    >
    > --
    > Mark A. Boyd
    > Keep-On-Learnin' :)

  • Editingutils.js error message dreamweaver cs4

    I keep getting this the attached error message using Dreamweaver CS4, spry framework utilizing a number of spry widgets.
    CollapsiblePanels
    Spry Forms Widgets
    I have made changes to the span id names associated with each of the form widgets.
    I've reviewed this link http://kb2.adobe.com/cps/401/kb401257.html
    However the files described do not contain the following lines and changes
    Edit SpryTabbedPanelsDesignTime.js and make the following changes:
    THIS DOES NOT EXIST IN THE FILE IN CS4
    Go to line 188. Change:
    eval("opts = " + args[ 1 ]);
    to:
    try { eval("opts = " + args[ 1 ]); } catch(e) { opts = null; }
    Save the file.
    Edit SpryCollapsiblePanelDesignTime.js and make the following changes:
    THIS DOES NOT EXIST IN THE FILE IN CS4
    Go to line 188. Change:
    eval("opts = " + args[ 1 ]);
    to:
    try { eval("opts = " + args[ 1 ]); } catch(e) { opts = null; }
    Save the file.
    Launch Dreamweaver and verify that you can now load your file.
    Any other solutions?

    I have resolved the editingutils.js by breaking up the forms, but it is not the solution I'm really looking for.
    Each of the 6 forms on seperate pages are 450 lines of code.
    Form sample.
    http://irexs.com/betatest001/can/listCANCommercial.cfmhttp://www.irexs.com/betatest001/
    I want to be able to have multiple forms on one page, nested in spry collapsible panels.
    I'm using DW CS4 and Coldfusion 8 server, forms utilize SPRY form fields (not cfforms).
    In order to reslove the editingutils.js I had to break up the forms, but have considered an alternate solution.
    In each panel the forms are nested via cfinculdes; structure as follows.
    <div col panel>
         <div col panel content>
              <form spry fields>
                   <cfincludes location form file>
                   <cfincludes details form file>
              <form end>
         <dev col panel content ent>
    <div col panel end>
    WHAT I WANT TO ACCOMPLISH is as follows.
    Sample page
    http://irexs.com/betatest001/can/listCAN.cfm
    Forms are to be inserted in the panel content section as described above.
    ISSUES ARE:
    I have limited JavaScript knowledge.
    For the forms to work i require the the panels in closed state at page load: This is done.
    ON FORM SUBMIT, I need the panel to stay OPEN, when client side or server side submit requires correction to the form.
    What happens now is the page refreshes and the panel closes: the default state.
    SOLUTION DESIRED, is to have the selected panel to stay open and the input information to remain when form is submitted.
    Thanks for any help.

  • Dreamweaver CS4 serial number invalidated after 8 months of use

    In January 2nd 2014, I purchased an OEM version of Dreamweaver CS4 for Windows from a reseller called "Smart Shop" which looked like a serious outfit [emails from Jet Support were received with a link to "Access your order and customer support http://appscustomerscare.com"]. A serial number was obtained. I downloaded the program from their site  and installed it without any problem: When I launched the application, the serial number was inserted and the Adobe server validated it: the application worked seamlessly for more than 8 months.
    Yesterday, when I launched Dreamweaver CS4, a dialog box showed up stating the the serial number used was invalid! I used the serial number that I had been given to activate Dreamweaver but the form showed a red X at the end of the serial number meaning the the serial number was invalid.
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]
    Now, I'm back to the trial version (available for 29 more days)!
    Is there a licensing problem link with buying an OEM version of Dreamweaver from resellers?
    Why was the serial number considered valid on first run and all successive runs and then invalidated after 8 months?
    How can I be sure that my next "bona fide" purchase of Dreamweaver won't run into the same problem?
    Is there a way to recognize good from bad resellers?

    Sorry you got nailed - Next time try this
    http://www.adobe.com/cfusion/partnerportal/index.cfm
    Some info about appscustomerscare
    http://www.scamadviser.com/check-website/appscustomerscare.com

Maybe you are looking for

  • Is there any way to be sure about book progression using VoiceOver Utility?

                                                                                   I am able to load and display iBooks products using VoiceOver utility without issues, which I'm very                                              happy about. The main iss

  • LDAP search optimization

    Hi, I am dealing with slow searches against large directory (10+M entries). For example, search with filter {color:#0000ff}(&(sn=Smith)(givenName=John)(dayOfBirth=0204)){color} might take couple of minutes. sn and givenName are indexed of course, but

  • How do i get my music library just to be the music i currently have on my Ipod?? Help!

    My Library on my Itunes has music from past ipods. I want it to just have music that i currently have on my Ipod touch. How do I do that?

  • Deprecated and internal proprietary API in Java

    Hi, all I'm facing a problem right now that our product is near to the ending of the life cycle and won't t have big release from 2013. Hence we are thinking that the JRE/JDK in the product should be stable enough and will not have significant change

  • Time query in oracle

    Hi, I created one table create table test_ni( start_time varchar2(20), end_time varchar2(20)); insert into test_ni values('12:15:58','12:23:01') ; commit; I want output 7 minutes 3 second or 7.03 can anybody please help.