I am trying to create a form for visitor submissions that they can include a image file. I can make the code work to the point where it will submit and give me a message saying it was successfully submitted, HOWEVER, I never get any of the information in my email from the form. So, here is the code I have in my editor and it works fine, except I don't receive the information from the form. If I removed the code for the file upload, I get the information via email, but, without theattached file of course. I don't know why Angelfire forms have to be so complicated. Please help get my form doing what I need it to do.
<FORM ACTION=https://www.angelfire.com/cgi-bin/script_library/form_handler_mail METHOD=POST ENCTYPE="multipart/form-data>
<INPUT TYPE="hidden" NAME="email_to" VALUE="somdshoot@somd.net">
<B>Full Name:<br>
<INPUT NAME="name" size="40"><BR>
<P>
E-mail Address:<br>
<INPUT Name="email" size="40"><BR>
<P>
City / Town:<br>
<INPUT name="city" size="40"><br>
<P>
State:<br>
<INPUT name="state" size=40"><br>
<P>
Insert Your Story, News, Or Article(s):<br>
<TEXTAREA NAME="story" ROWS=10 COLS=70></TEXTAREA>
<P>
Attach Image File:<br>
<INPUT TYPE="file" NAME="upload">
<P>
<INPUT TYPE=submit VALUE="SEND MY SUBMISSION !"></P>
</FORM>