I am wanting to use a mailto form like the one below
<form action="MAILTO:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" value="your name"><br>
E-mail:<br>
<input type="text" name="mail" value="your email"><br>
Comment:<br>
<input type="text" name="comment" value="your comment" size="50"><br> <br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
but instead of it sending it to a predefined address i want the user to be able to choose the address. I also want the user to choose a subject using a simple text box for both. Any help is highly appreciated thanks