email form results question

T

TheresaB

Hi, I have a couple of forms that email the results. Is there a way to add a
comment or additional text to the email notification that is generated?
Thanks, Theresa
 
T

Thomas A. Rowe

Not when using the FP Form Handler, unless you add the text as the value of a hidden form field

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
==============================================
If you feel your current issue is a results of installing
a Service Pack or security update, please contact
Microsoft Product Support Services:
http://support.microsoft.com
If the problem can be shown to have been caused by a
security update, then there is usually no charge for the call.
==============================================
 
T

TheresaB

Thank you for your reply. How do you make a form field 'hidden'? Thanks,
Theresa
 
R

Ronx

In code or HTML view add
<input name="myadditionalcomment" type="hidden" value="Whatever comment you
want to send with the form data">
immediately after the <form....> tag

Or, right click anywhere inside the form, choose form properties
Click Advanced button
Click Add
Type in a name for the field - no spaces or non-alphanumeric characters,
must start with a letter.
Type in the comment you wish to send. (limit 255 characters).
Click OK, click OK
 
T

TheresaB

Excellent! Thanks so much!

Ronx said:
In code or HTML view add
<input name="myadditionalcomment" type="hidden" value="Whatever comment you
want to send with the form data">
immediately after the <form....> tag

Or, right click anywhere inside the form, choose form properties
Click Advanced button
Click Add
Type in a name for the field - no spaces or non-alphanumeric characters,
must start with a letter.
Type in the comment you wish to send. (limit 255 characters).
Click OK, click OK
 
Top