在 Ember.js 应用中使用 Nodemailer

Using Nodemailer in an Ember.js app

我目前正在使用 ember-cli 构建一个网站。这很有趣,我取得了进步并学习了这个框架。

现在我想使用 Nodemailer 发送联系表。我想出了如何从我的终端用 nodemailer 发送邮件,但我不知道它应该如何与 Ember 结合使用。我根本不知道如何将前端连接到后端。我需要设置服务器吗?

我还没有构建任何 Node.js 应用程序,所以请多多关照,给我一个提示,让我可以在不开设 nodeschool.io 课程的情况下找到一些建议。

提前致谢!

您可以使用 Express to expose an API call that uses the json posted to the API to call Nodemailer. See this answer 了解如何使用 posted 到 API 的数据。我假设你一直在玩 ember,你可以弄清楚如何 post 从你的表单中捕获的数据到 API.