Click to See Complete Forum and Search --> : Sending Froms to email addresses


Shan5509
03-11-2003, 10:34 AM
:confused:

Does anyone know if it is possible to send the resutls of a form built with Javascript, to more than one emaill address?

I have been trying to accomlish this but cannot seem to get it working.

Any help is appreciated.

dabush
03-11-2003, 10:43 AM
<form method=post action="mailto:first@person.com?cc=second@person.com&subject=Cool Form" enctype="text/plain">

</form>

Shan5509
03-11-2003, 11:03 AM
Hi,

Thank you for your response. I am working on a form that was already created by another user. The forms is sent to one person only and currently needs to be sent to two people. The code currently used is:

s-email-address="first@domain.com" b-email-label-fields="TRUE" b-email-subject-from-field="FALSE" s-email-subject="title of form" s-builtin-fields

I tried to use the code that you provided but it is not working for me. Should it work in conjunction to what I have posted as my code?

Shan5509
03-11-2003, 11:54 AM
forgot to add that I also using Frontpage as well....

does this make a difference....:confused:

dhermes
03-11-2003, 07:56 PM
the previous code which involves
<form method=post action="mailto:first@person.com?cc=second@person.com&subject=Cool Form" enctype="text/plain">

</form>

keep in mind, this is not javascript, this is basic html, you could also separate the first and second email by a comma only.

I'm not sure that this would actually work if the form is a complete javascript form.

I'm assuming this is set in an html page?