我正在制作一个网站并使用Notepad ++。如何在HTML文档中创建mailto表单?
谢谢,安德鲁
答案 0 :(得分:1)
您使用内置的mailto功能。要在您执行的表单中使用它;
<form name="your name" class="your class" action="mailto:someone@example.com">
</form>
然后,您需要添加要通过电子邮件发送表单的地址。
答案 1 :(得分:0)
<!DOCTYPE html>
<html>
<body>
<h2>Send e-mail to someone@example.com:</h2>
<form action="mailto:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name"><br>
E-mail:<br>
<input type="text" name="mail"><br>
Comment:<br>
<input type="text" name="comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>