|
-
Oct 11th, 2002, 03:23 PM
#1
Thread Starter
New Member
Form Sender - Without having to go through another server - How?
How can I make a web form that the results can be sent directly to my e-mail without having to go through another server?
-
Oct 13th, 2002, 12:31 PM
#2
Thread Starter
New Member
Do I need to explain better?
-
Oct 14th, 2002, 04:28 AM
#3
Frenzied Member
Assuming you don't have a server-side methods like PHP, ASP, Perl, etc. the only thing I think you can do is something like this:
Code:
<form action="mailto:[email protected]" enctype="text/plain"><div>
Name: <input type="text" name="Name"><br>
Subject: <input type="text" name="subject"><br>
Comments: <textarea name="comments" cols="20" rows="10"><textarea><br>
<input type="submit" value="Send Comments"><input type="reset" value="Clear Form">
</div></form>
But that will just open the user's e-mail client.
-
Oct 17th, 2002, 11:20 AM
#4
Hyperactive Member
That code doesn't work in Netscape. It just opens a blank email.
-
Oct 17th, 2002, 05:32 PM
#5
Frenzied Member
I think that's 'cause I gave incorrect code This:
Code:
Comments: <textarea name="comments" cols="20" rows="10"><textarea><br>
Should have been this:
Code:
Comments: <textarea name="body" cols="20" rows="10"></textarea><br>
Or you could add method="post" to have all the form elements added to the body along with their name. But I think if you use AOL none of the above will work.
-
Oct 18th, 2002, 05:17 AM
#6
Hyperactive Member
When I started off doing websites I used a similar form for my sites, but then I realised that netscape users couldn't use the form. I use cgi or php now. I also noticed that Explorer 6 does the same thing, just opening the email.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|