Posts: 158
Name: cbeaudin
Location: Proud to be Canadian
|
As far as i know there is no reliable way to send form data to email without a server side script. Your description sounds like you are using a mailto: in the action attribute. This will allow the user to open their email account through outlook or whatever their default email client is to send you the results.
Most web space providers will have a cgi application to allow you to do this automatically on the server. If this is the case you include the application path in your form tag like so
HTML Code:
<form action="/cgi-bin/app-name.cgi">
__________________
- cbeaudin
|