PDA

View Full Version : another question on formmail...


thebishop
12-12-2002, 08:09 PM
on a seperate note, when I get the email, it won't show who its from, is that a tag I need to look at or something within the CGI? Right now it just says from () (like its an empty field...)

don5408
12-13-2002, 03:06 AM
"when I get the email, it won't show who its from"

The problem is the absence of a field named "email" in your form.

Change this:
<INPUT TYPE="text" NAME="email address:" SIZE="30">
...to this:
<INPUT TYPE="text" NAME="email" SIZE="30">

Don