the template file that sends the email loops through all of the form elements
the first 2 are the hidden e,ement and submit button on the form used for honey pots validation and for sending the form.
the toird one is place holder text in the email template file.
to edit the email template, go to the webassist/email/templates folder and open the template file for your form page.
you will see in there the lorum ipsum place holder text that you can edit.
to remove the hidden field and submit button from the email message, go into code view.
near the top of the page, edit the remove begins array:
$removeBegins = array();
$removeBegins[] = "Security";
to:
$removeBegins = array();
$removeBegins[] = "Security";
$removeBegins[] = "Hidden_Field";
$removeBegins[] = "SimpleContact_submit";