在Angular 4中发送不带后端的电子邮件

时间:2019-03-20 07:02:13

标签: javascript angular email

我可以使用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>

还是我实施错误的方式?

任何帮助都会很棒。 谢谢。

1 个答案:

答案 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>