Forms setup for email results

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

It says if you want the subject line of the email to
contain the results of one of the fields of your form,
select "Form Field Name" and then type the name of the
field name in the "Subject" line.

My questions is can I add additional text after the field
name?

Such as: Name &Questionnaire 2 Response.

Where Name is the name of the field.
 
No, you have to add the text before the form is submitted. This would be done with JavaScript, by
combining the two field together.

I don't work with JavaScript, so I can not tell you have to do this.

--
==============================================
Thomas A. Rowe (Microsoft MVP - FrontPage)
WEBMASTER Resources(tm)

FrontPage Resources, WebCircle, MS KB Quick Links, etc.
==============================================
 
Sorry no. You'd have to have the submit button concatenate the other verbiage prior to submission.

<input type="submit" onclick="this.form.mysubject.value = this.form.mysubject.value + ' my add on'; return true;" >
 
Back
Top