Name: Anonymous 2007-04-20 18:10 ID:DrcvJuIZ
Hey /prog/, I know next to nothing about programming and need some help. How can I make a submission form in html which allows someone to submit information to an e-mail address without having to be signed in to an e-mail account of their own, and instead using some 3rd party thing? Here's my basic form I've got so far:
<html>
<head>
Submission Form
</head>
<FORM action="mailto:asdasda@asdf.com"; method="post">
<P>
<LABEL for="name">Name:</LABEL><p align=left><INPUT type="text" id="name"><BR></align>
<center>
</center>
<LABEL for="email">E-mail:</LABEL><p align=left><INPUT type="text" id="email"><BR></align>
<center>
</center>
<LABEL for="comment">Comment:</LABEL><p align=left><INPUT type="text" id="comment" rows=4 cols=20><BR></align>
<p align=left>Question goes where?</p align>
<INPUT type="radio" name="option" value="Option 1"> Option 1<BR>
<INPUT type="radio" name="option" value="Option 2"> Option 2<BR>
<INPUT type="submit" value="Send">    <INPUT type="reset">
</P>
</FORM>
</html>
Thanks in advance.
<html>
<head>
Submission Form
</head>
<FORM action="mailto:asdasda@asdf.com"; method="post">
<P>
<LABEL for="name">Name:</LABEL><p align=left><INPUT type="text" id="name"><BR></align>
<center>
</center>
<LABEL for="email">E-mail:</LABEL><p align=left><INPUT type="text" id="email"><BR></align>
<center>
</center>
<LABEL for="comment">Comment:</LABEL><p align=left><INPUT type="text" id="comment" rows=4 cols=20><BR></align>
<p align=left>Question goes where?</p align>
<INPUT type="radio" name="option" value="Option 1"> Option 1<BR>
<INPUT type="radio" name="option" value="Option 2"> Option 2<BR>
<INPUT type="submit" value="Send">    <INPUT type="reset">
</P>
</FORM>
</html>
Thanks in advance.