如何链接联系表格?

时间:2012-12-17 00:46:24

标签: html css

我在这里有点便宜并为我的公司窃取网站模板,而不是从头开始制作。

但我的问题是在联系表单上 - 如何将其链接到我的电子邮件中?

<div id="contact_form">
            <h4>Send us a message now!</h4>
            <form method="post" name="contact" id="ok" action="#">

                <label for="author">Name:</label> <input type="text" id="author" name="author" class="required input_field" />
                <div class="cleaner_h10"></div>
                <label for="email">Email:</label> <input type="text" id="email" name="email" class="validate-email required input_field" />
                <div class="cleaner_h10"></div>

                <label for="phone">Phone:</label> <input type="text" name="phone" id="phone" class="input_field" />
                <div class="cleaner_h10"></div>

                <label for="text">Message:</label> <textarea id="text" name="text" rows="0" cols="0" class="required"></textarea>
                <div class="cleaner_h10"></div>

                <input type="submit" class="submit_btn float_l" name="submit" id="submit" value="Send" />
                <input type="reset" class="submit_btn float_r" name="reset" id="reset" value="Reset" />

            </form>
        </div>
    </div>

这是我的表格 - 我还需要在实际表格的背景中添加白色(全黑)这样你就看不到方框了 - 我该怎么做呢?

欢呼帮助

1 个答案:

答案 0 :(得分:-1)

最基本的方法是将action设置为您的电子邮件地址:

<form action="mailto:someone@example.com" method="post" enctype="text/plain">

http://webdesign.about.com/od/forms/a/aa072699mailto.htm