这是我的代码看起来像我无法发送到我的电子邮件,我不知道该怎么做?
<form id="contacts-form" action="">
<fieldset>
<div class="field">
<label>Your Name:</label>
<input type="text" value=""/>
</div>
<div class="field">
<label>Your E-mail:</label>
<input type="email" value=""/>
</div>
<div class="field">
<label>Your Website:</label>
<input type="text" value=""/>
</div>
<div>
<label>Your Message:</label>
<textarea cols="1" rows="1"></textarea>
</div>
<div class="alignright">
<a href="#" onClick="document.getElementById('contacts-form').submit()">
Send Your Message!
</a>
</div>
</fieldset>
</form>
答案 0 :(得分:2)
您需要一个将发送电子邮件的后端,您需要告诉您的表单将信息发送到何处。 Try this tutorial(使用php)学习如何操作。其他语言中会有很多教程,但你不能单独使用html。
答案 1 :(得分:2)
您需要进行一些服务器端编码。这是我找到http://www.perlfect.com/articles/sendmail.shtml页面的链接,指出如何使用Perl进行操作。但是选择你喜欢的编程语言,你会发现如何发送代码的例子。
无论您在表单中的操作中编写什么代码,都会指向将接受字段并发送电子邮件的脚本。