Ok. So I am making a website for my company but we are not on a server. It is just a localized drive that everyone has access to so I cannot use PHP and other server side scripts. I am making a mailto form, which is not the problem. I would like to see if I can make a single form that has a dropdown for the person to choose the recipient of the email. I have made multiple forms for each individual recipients but we are trying to conserve space.
In the example below I am wanting the Manager dropdown to choose the recipient. Are there any ideas out there?
[CODE]
<FORM name=ButtonNominations onsubmit="return checkrequired(this)"
action="mailto:me@example.com?subject=Nomination" method=post encType=text/plain>
<table cellspacing="10px" width="90%">
<tr>
<td width="150px">
<LABEL for=requiredNameofNominee>Who are you Nominating?</LABEL></td>
<td>
<INPUT name=requiredNameofNominee><br />
</td>
<td>
</td>
<td><LABEL for=requiredManager>Manager of Nominee</LABEL></td>
<td><SELECT name=requiredManager> <OPTION selected>
<OPTION>Manager 1</OPTION>
<OPTION>Manager 2</OPTION>
<OPTION>Manager 3</OPTION>
<OPTION>Manager 4</OPTION>
<OPTION>Manager 5</OPTION>
<OPTION>Manager 6</OPTION>
<OPTION>Manager 7</OPTION>
<OPTION>Manager 8</OPTION>
<OPTION>Manager 9</OPTION>
</SELECT><br />
</td>
</tr>
<tr>
<td>
<LABEL for=requiredNominatedBy>Your Name:</LABEL></td>
<td>
<INPUT name=requiredNominatedBy><br /></td>
<td> </td>
<td><LABEL for=requiredRESEND>Do you want to read this nomination out loud at the department meeting?</LABEL>
</td>
<td>
<INPUT
name="read" value="Yes" type="radio"> <LABEL for=read>Yes</LABEL>
<INPUT
name="read" value="No" type="radio"> <LABEL for=read>No</LABEL>
<br />
</td>
</tr>
<tr>
<td colspan="2">
<LABEL for=requiredINFORMATION><i>More Info:</i></LABEL><br />
<TEXTAREA id=requiredINFORMATION name=requiredINFORMATION rows=6 cols=50></TEXTAREA><br />
</td>
<td colspan="3">
<br />
<FIELDSET><LEGEND align=top>Button Nominated For</LEGEND>
<br>
<INPUT id=applause type=radio value=applause
name=button> <LABEL for=applause>Applause, Applause</LABEL> <BR>
<INPUT id=difference type=radio value=difference
name=button> <LABEL for=difference>You Make the Difference</LABEL> <BR>
<INPUT id=team type=radio value=team
name=button> <LABEL for=team>Together Everyone Achieves More</LABEL>
</fieldset>
<br />
</td>
</tr>
<tr>
<td colspan="2">
<INPUT type=submit value=Submit>
<INPUT type=reset value=Cancel>
</td>
<td colspan="3">
<FONT color=red><strong>After pressing 'submit', a pop-up box will let you know the form is being
submitted using e-mail - Click OK.
Another pop-up will ask you again if you
want to send via email - Click Allow.</strong></FONT>
</td>
</table>
</FORM>
[CODE]



Reply With Quote

Bookmarks