HTML
HTML 表单和输入
从表单发送电子邮件 - 此例演示如何从表单发送电子邮件。
源代码:
点击运行 »
<h3>发送邮件到 someone@example.com:</h3> <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="发送"> <input type="reset" value="重置"> </form>
运行结果:
点击运行 »