我在引导程序模式中拥有这个:
<form role="form" method="POST" action="https://formspree.io/<myemail@gmail.com>">
<p>
Send me a message via the form below, and I will get back to you as soon as possible!
</p>
<div class="form-group">
<label for="name">
Your Name:</label>
<input type="text" class="form-control"
id="name" name="name" required maxlength="50">
</div>
<div class="form-group">
<label for="email">
Your Email:</label>
<input type="email" class="form-control"
id="email" name="email" required maxlength="50">
</div>
<div class="form-group">
<label for="name">
Your Message:</label>
<textarea class="form-control" type="textarea" name="message"
id="message" placeholder="Your Message Here"
maxlength="6000" rows="7"></textarea>
</div>
<button type="submit" class="btn btn-lg btn-success btn-block" id="btnContactUs">Send It! →</button>
</form>
我有
<meta name="referrer" content="origin">
在我的标头中,并且我正在github页面上进行测试,而不是在本地进行测试,但是它将无法正常工作。我尝试将其剥离为最基本的formpree表单(他们在其网站上显示的示例),以防问题出在我的表单上,但仍然无法解决。请帮忙。