creating and sending a form via submit button using HTML

  • Thread starter Thread starter JD
  • Start date Start date
J

JD

What is a good link or if someone can show me code that i can enter
into an HTML page that when using a submit button, the form, the entire

form is sent via email to multiple email addresses.

I created the page in notepad and continued refining it in frontpage.


If there is any way that i might be able to do this and guidance would
be greatly appreciated


Thanks
 
Hi JD,

If you're using FP you'll have to use cascading froms.

You may also wish to take a look at SENDIT! which allows you to send to multiple addresses using a templated output.
 
You may also need to check with your web host. There isn't any HTML that
does this part for you, it's handled server-side via a script or a special
type of executabe. Your host will have a certain set of technologies that
they support and that will be where you'll need to start as there are tons
of things you can do, but you have to do the method that your host supports
for server-side scripting. You'll essentially have to craft a form handling
routine that will concatenate the form results togehter into one email body
string that can be passed to some sort of email component. Again, all this
is highly dependent upon which scripting languages your host supports (or
doesn't, they may not support any).

Hope this helps,
Mark Fitzpatrick
Microsoft MVP - FrontPage
 
Back
Top