How can I format the email result generated by a form?

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

Guest

I need to add some HTML coding in the email result generated by a form. I'd
also like to one paragraph, which is not submitted by the form user.

Is that possible? I am using Frontpage 2000. Thanks.
 
Cinderella said:
I need to add some HTML coding in the email result generated by a form. I'd
also like to one paragraph, which is not submitted by the form user.

Is that possible? I am using Frontpage 2000. Thanks.

You can add a "hidden field" and add your text to it.

You can't modify the formatting, you get what the script puts out.

To format the email, you'd have to switch to an ASP, PERL or other script
form handler.
 
message
:I need to add some HTML coding in the email result
generated by a form. I'd
: also like to one paragraph, which is not submitted by the
form user.
:
: Is that possible? I am using Frontpage 2000. Thanks.

You cannot change the FP form handler to do this. What you
can do is make your own form handler using whatever server
side script language is availble on the server (eg ASP ASPX
Perl) to generate the email

A benefit of having an external form handler is that your
email address is not in the html code on the form page- this
will greatly reduce spam
 
Back
Top