The NMS FormMail folks told me how to fix this, and it worked perfectly.
Try changing the form opening line from this (this is the form statement that I had in my html):
<form action="/cgi-bin/ahpatches.pl" method="post"
enctype="text/plain" name="order_patches" id="order_patches">
to this:
<form action="/cgi-bin/ahpatches.pl" method="post">
NMS FormMail works except that it does not use the "email" and "subject" fields correctly.
I make a form that sets email and subject (say, to "
bob@bob.com" and "here is a subject", respectively). On the results page, after clicking the "submit" button, it says "subject=here is a subject email=bob@bob.com".
Yet the e-mail I get from the submission always uses the default email and subject values (i.e., the e-mail is from "
nobody@whatever.com", and the subject is "WWW Form Submission").
It seems like a bug in the script to me, as it lists the correct form field values but then does not use them in sending the e-mail.
Anyone have any ideas I how I can get the email and subject fields to work right?