输入按钮不会发送到电子邮件

时间:2017-07-12 22:12:11

标签: html button input

我想设置我的"提交"按钮发送到我的电子邮件地址,但它似乎没有工作。我似乎无法弄清楚我错过了什么,并且最近没有编码。任何帮助将不胜感激。以下是我网站上的代码 - www.flyfreebird.com/aprons.html:

<div class="custom_form group">
 <form class="form_container">
 <form method="post" action="mailto:flyfreebird@me.com" enctype="text/plain">
  <label for="name">Name</label>
  <input type="text" id="name" name="fullname">
  <label for="email">Email Address</label>
  <input type="text" id="email" name="email">
  <label for="phone">Phone</label>
  <input type="text" name="phone">
  <label for="company">Company</label>
  <input type="text" name="company">
  <label for="phone">Quantity</label>
  <input type="text" name="quantity">
  <label for="zip">Zip</label>
  <input type="text" name="zip">
  <label for="details">Details</label>
  <textarea id="details" name="subject" placeholder="Tell us what we need to know…" style="height: 200px;"></textarea>
  <input type="submit" name="submit">
 </form>
</div>
<div id="clear"></div>

1 个答案:

答案 0 :(得分:0)

您无法使用裸HTML发送电子邮件,您应该使用PHP或类似的东西 How to send an email using PHP?