Im kind of new to this, but what I am trying to do is make a page with 2 textboxes, and when someone files them in and hits submit it emails the content of the textboxes to a email address.
Any help would be greatly appreciated. :)
-Thanks ;)
Printable View
Im kind of new to this, but what I am trying to do is make a page with 2 textboxes, and when someone files them in and hits submit it emails the content of the textboxes to a email address.
Any help would be greatly appreciated. :)
-Thanks ;)
Have you got a server-side scripting language like PHP or Perl, or do you want to use plain HTML (not a very good method)? Here's how to do it in HTML:
But it will have problems in browsers like AOL.:(Code:<form action="mailto:me@my_address.com" method="get"><p>
<label for="Name">Name:</label> <input id="Name" name="Name" /><br />
<label for="Subject">Subject:</label> <input id="Subject" name="Subject" /><br />
<label for="Message">Message:</label> <textarea cols="20" rows="10" id="Message" name="Message"></textarea><br />
<input type="submit" /><input type="reset" />
</p></form>