I don't know ASP, so I'll have to speak in generalities here.
The form goes something like this:
HTML Code:
<form action="send.asp" method="post">
<select name="to">
<option value="sales@home.com">Sales</option>
<option value="admin@home.com">Admin</option>
<option value="tech@home.com">Tech</option>
</select>
<input type="submit" value="Send"/>
</form>
... then the content of the POST variable to is the address to send to. You'll want to add some checking that the email is one of the options, too, or someone could use your site to mailbomb innocent people.
Bookmarks