email form results question

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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.
==============================================
 
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
 
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
 
Back
Top