In the following tag in your html form:
<input type="submit" name="Submit" value="Submit" />
Remove the "name" part to look like this instead:
<input type="submit" value="Submit" />
And that will get rid of the
"Submit: Submit" part of the submitted email.
Also, if you want to remove the following headers:
firstlastname:
repeatemail:
phone:
And just have the data that the Submitter enters show up, example:
John Doe
jdoe@email.com
(800)123-4567
then follow the instructions that this following post by
dugawug gives:
http://www.lunarforums.com/forum/index.php?topic=31037.msg237303#msg237303One last thing ...
Since you are asking for first and last name all on one field (NOT separately), you might want to use
"realname" instead of
"firstlastname" for that field tag, because the
NMS FormMail script uses
"realname" in the script itself which then puts that data in the
"From:" section of the submitted email instead of only the email address.
I, myself, find this beneficial to see the actual name of the Submitter rather than just their email addy listed in my inbox for easier/better referencing purposes.
What "error" pages are you referring to? For what errors?
The "Thank You" page is in the
"redirect" hidden tag. If your customized
"Thank You" html page is not redirecting, then you probably have your path to the page incorrect. Double-check that.