我可以使用Angular 4发送电子邮件而不涉及后端吗?
我尝试了formspree,但没有帮助。
<form method="POST"
action="https://formspree.io/usmansaleem.logicon@gmail.com">
<input type="email" name="email" placeholder="Your email">
<textarea name="message" placeholder="Test Message"></textarea>
<button type="submit">Send Test</button>
</form>
还是我实施错误的方式?
任何帮助都会很棒。 谢谢。
答案 0 :(得分:0)
Angular使每个form
元素隐式地成为一个NgForm
来操纵表单的行为。
您需要为表单设置NgNoForm
属性。
<form method="POST" ngNoForm
action="https://formspree.io/usmansaleem.logicon@gmail.com">
<input type="email" name="email" placeholder="Your email">
<textarea name="message" placeholder="Test Message"></textarea>
<button type="submit">Send Test</button>
</form>