The mailto method is quite unreliable. Maybe it's not working
because your
email client just doesn't work with mailto:.
There are only two ways to process form data -
1. Use mailto:name@domain.com as the action of the form
2. Use a server-side scripting method to a) harvest the
form's data, b)
process it in some manner, e.g., enter it into a database, c)
formulate and
send an email to one or more email recipients, and d)
redirect the visitor
to some ending page
Method 1 is quite simple, and is also the least reliable. It
depends both
on your visitor having an email client already installed on
their computer -
this eliminates public computers, or home users without email
clients
installed (more and more it seems) - and on the installed
email client
responding to
the mailto call. It is not possible to use this method *and*
send the
visitor to a
thank you page as well.
Method 2 is the preferred method, since it eliminates the
problems of method
1, but it means that you have to grapple with
server-scripting somehow (ASP,
CF, PHP, perl, etc.).
You would have to decide which of these methods is best for
your needs,
but if it's Method 2, then start by asking your host what
they provide for
form
processing.
--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"specialmee" <webforumsuser@macromedia.com> wrote in
message
news:ed69vo$a2k$1@forums.macromedia.com...
> Hi, yeah i checked it ther and I am using the mailto:
method but it is not
> working. can you tell me why and correect the code. here
is the code...
>
>
> <form id="form1" name="form1" method="post"
> action="mailto:ldniit@yahoo.com">
> <label>E mail Address:<br />
> <input type="text" name="textfield" />
> </label>
> <p>
> <label>Comments: <br />
> <textarea name="textarea"></textarea>
> </label>
> </p>
> <p> </p>
> <p>
> <label>
> <input type="submit" name="Submit" value="Submit"
/>
> </label>
> <label>
> <input type="reset" name="Submit2" value="Clear"
/>
> </label>
> </p>
> </form>
>
> Please do reply quick I will be very thankful
>