• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Quick! Im stuck with this HTML problem!Urgent!

dezell123

Banned
How do I make a form (in HTML) that has a comment field,a name field,and a Email address field so when.... I click submit,it sends the users email,comments,and name in an email to me....HElp!!!!

CAn you provide me code on at least how to send it to my email? I think its get or sent,please HELP!PLEASE!
 
from gittyup's example: you will need a cgi to process the submit request so that it will send the info to you... otherwise, that link has the format and code you'll need...

another alternative to the cgi processing is to use
FORM ACTION="mailto:you@something.something" METHOD=POST
to send the entry to you... this is a bit troublesome since it's assuming the client (web browser) has email setup done. if not, it won't be able to submit / send the form by email to your address

also, another even simpler alternative is to use hosted form processing available for your use

-216-
 
Back
Top