Ask a Question related to Macromedia Dynamic HTML, Design and Development.

  1. #1

    Default form mailer

    I need some help. I created a form using dreamweaver (heres the link to the
    site and form [url]http://www.brentwoodlivery.ca/evaluation[/url] )
    Basically when you press "submit" i want the form emailed to
    [email]evaluation@brentwoodlivery.ca[/email]

    how do i do this??? i've tried to use different scripts but my lack of
    knowledge in perl has hindered my ability to get this working. could somone
    help me out?


    andrewdekker Guest

  2. Similar Questions and Discussions

    1. nX-Mailer form will not work on Windows server
      I am using a PHP script to process my HTML form but on Windows it does not work. What should I be asking my host to install on the server? This...
    2. form mailer in Pub.2000
      Is there a way to recieve the info from the form mailer to not appear as random lines of info? But rather the name/address/etc together and the...
    3. PHP Mailer
      I would like to set up a PHP page which my staff can use to select attachments and send them to a specified email address. There will be a list...
    4. sending attachments with form mailer
      I am using form mail to get information from forms on my web site and need to include the option for users to add files. Does anyone know of a good...
    5. Script Request - form mailer with ID Number
      Hi all I am looking for a basic form mailer script that can assign a unique sequential number to each request, if anyone knows of one please let...
  3. #2

    Default Re: form mailer

    It's dead easy in PHP - just make a script that checks and validates the
    form input, then sends it using the mail() function. Obviously it needs to
    be running on a machine which has a mail server which is accessible to PHP
    (i.e., just about any web hosting package, but not your own development
    environment, probably).


    andrewdekker wrote:
    > I need some help. I created a form using dreamweaver (heres the link
    > to the site and form [url]http://www.brentwoodlivery.ca/evaluation[/url] )
    > Basically when you press "submit" i want the form emailed to
    > [email]evaluation@brentwoodlivery.ca[/email]
    >
    > how do i do this??? i've tried to use different scripts but my lack
    > of knowledge in perl has hindered my ability to get this working.
    > could somone help me out?

    rob::db Guest

  4. #3

    Default Re: form mailer

    Well, you can do it with any serverside scripting-language (asp, perl etc). If
    you don't have access to such an option you can use a more ugly userside
    version. It works, but it doesn't wortk that well in all browsers.

    <form method="post" action="mailto:evaluation@brentwoodlivery.ca"
    enctype="text/plain">
    <input type=text name=your_comments>
    <input type=submit value="Submit Your Comments">
    </form>

    This opens a new mail in the visitors own mailapplication and it is up to the
    user to send the mail. In some browsers you get a popup asking if you really
    want to send it as a mail, and in some you dont.

    arvidb Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139