WannaLearn
Programmer
What i'm doing is having 4 forms on one page, 3 of the 4 forms have different e-mail addresses and some fields that need to be answered (the user chooses which form they are interested in filling out), then the 4th form has the contact info. Now is it possible to have any one of the first 3 forms that user inputted info. into AND the contact form to be emailed to the respective e-mail address?
This is the basic idea of what I am trying to accomplish:
<form name="1" action="mail1@mail.com" mrthod="post">
....
....
....
</form>
<form name="2" action="mail2@mail.com" mrthod="post">
....
....
....
</form>
<form name="3" action="mail3@mail.com" mrthod="post">
....
....
....
</form>
<form name="contactform" action="" mrthod="post">
....
....
....
</form>
So, if form name="1" was filled out, and contactform was filled out, both forms would be e-mailed to email as indicated in form 1, is that doable in simple JS?
Thanks.
This is the basic idea of what I am trying to accomplish:
<form name="1" action="mail1@mail.com" mrthod="post">
....
....
....
</form>
<form name="2" action="mail2@mail.com" mrthod="post">
....
....
....
</form>
<form name="3" action="mail3@mail.com" mrthod="post">
....
....
....
</form>
<form name="contactform" action="" mrthod="post">
....
....
....
</form>
So, if form name="1" was filled out, and contactform was filled out, both forms would be e-mailed to email as indicated in form 1, is that doable in simple JS?
Thanks.