In my /home/lancer/public_html I have form_experiment.html (the page to send from) and mytemplate.txt
(click the above two mentioned files to visit them in the flesh
For now, I am not actually trying to email anything, just echo as in the instructions at http://web.mit.edu/wwwdev/cgiemail/user.html
Here is my page...
mytemplate.txt
CODE
To: not.my.real.email@antispam.com
Subject: Email Form thingie
Contact address? [email]
What do you want to tell me? [infobox]
Subject: Email Form thingie
Contact address? [email]
What do you want to tell me? [infobox]
form_experiment.html
CODE
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>Form Mail Experiment</title>
<meta name="generator" content="Bluefish 1.0.7">
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8">
</head>
<body>
<FORM METHOD="POST" ACTION="cgi-bin/cgiecho/mytemplate.txt" NAME="myform">
Please type in your contact address... <INPUT NAME="email"><p>
What do you want to tell me? <INPUT NAME="infobox"><p>
<INPUT TYPE="submit" value="Send e-mail">
</FORM>
<p>
Thanks. Have a nice day.
</body>
</html>
<html>
<head>
<title>Form Mail Experiment</title>
<meta name="generator" content="Bluefish 1.0.7">
<meta name="ROBOTS" content="NOINDEX, NOFOLLOW">
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta http-equiv="content-type" content="application/xhtml+xml; charset=UTF-8">
</head>
<body>
<FORM METHOD="POST" ACTION="cgi-bin/cgiecho/mytemplate.txt" NAME="myform">
Please type in your contact address... <INPUT NAME="email"><p>
What do you want to tell me? <INPUT NAME="infobox"><p>
<INPUT TYPE="submit" value="Send e-mail">
</FORM>
<p>
Thanks. Have a nice day.
</body>
</html>
On sending a message, I get the report...
QUOTE
Processed form looks like this:
cgiemail 1.6
cgiemail 1.6
...and no actual fields showing. Why? I have checked the spelling against my template and everything. Can someone please tell me where I have gone wrong?

