Click to See Complete Forum and Search --> : looking for a simple "form" script for a webpage


sanger
05-01-2003, 01:55 PM
Hi all,

I would like to put a some type of "form" on a webpage that allows my visitor to,

Type in a "Subject"
Type in a "message"

and then hit send.

I want the message to go to my catch-all inbox

Can someone recommend a script?

Thanks,

Mike

AdamGundry
05-01-2003, 02:15 PM
If you have access to a server-side language, try searching Google (http://www.google.com/search?q=form%20to%20mail%20script) for a "form to mail script" in the appropriate language.

If not, use this form tag for a basic email form submission:

<form action="mailto:somebody@example.com" enctype="text/plain">

Adam