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.
==============================================
 
Thank you for your reply. How do you make a form field 'hidden'? Thanks,
Theresa
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top