Worked for me. what is the URL of your form?
Can you get your form to send you anything? If so, then you should just need to add

HTML:
  1. <SCRIPT language="JavaScript" TYPE="text/javascript">
  2. var AgreeString = "I agree to do as you tell me<br /> I further agree to eat salad";
  3. document.write(AgreeString);
  4. document.write("<INPUT TYPE=hidden NAME=\"Agreement\" VALUE=\""+AgreeString+"\">");
  5. </SCRIPT>
  6. <p>Please type your name in this field to indicate you agreement of the terms
  7. <INPUT TYPE=text NAME="IAgree" SIZE="50">:
  8. </p>

to your form. I have meddled with my FormMail, but the basic functionality is the same. Maybe you've included some reserved characters such as # in your message.

Bookmark this article