Forms setup for email results

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.
 
T

Thomas A. Rowe

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.
==============================================
 
M

MD Websunlimited

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;" >
 

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

Top