我在 GitHub 页面上托管一个网站,当我尝试提交 formspree.io 表单时,出现以下错误:
这是我的代码:
<form action="http://formspree.io/[email protected]" method="post">
<div class="row uniform collapse-at-2">
<div class="6u">
<input type="text" name="_replyto" placeholder="Email">
</div>
</div>
<div class="12u">
<textarea name="Message" placeholder="Message..." rows="4" cols="50" maxlength="500"></textarea>
</div>
<br>
<div style="display:none">
<input type="hidden" name="_subject" value="New submission!">
<input type="hidden" name="_next" value="thanks.html">
<input type="text" name="_gotcha">
</div>
<div class="row uniform">
<div class="12u">
<ul class="actions">
<li>
<input type="submit" class="special" value="Send">
</li>
</ul>
</div>
</div>
</form>
这是由于代码错误、GitHub 页面错误还是 formpree 错误造成的?
最佳答案
您应该做的事情如下:
<form method="POST" action="http://formspree.io/YOUREMAILHERE">
<input type="email" name="email" placeholder="Your email">
<br>
<textarea name="message" placeholder="Your message"></textarea>
<button type="submit">Send</button>
</form>
在这里将 您的电子邮件 放在/之后的“http://formspree.io/YOUREMAILHERE ”中。如果您想将
name="email"
更改为 name="_replyto"
,这会将发件人的电子邮件更改为可点击的链接。(阅读邮件时有帮助)然后在您的
<head>
标签内放置:<meta name="referrer" content="origin">
希望它有效!!
祝一切顺利 :)
关于html - 从 GitHub 页面提交 formspree.io 时出错,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35236643/