我看到环回带有集成为节点模块的nodemailer。我尝试按照文档通过 angular-sdk 发送 hello world 邮件
http://apidocs.strongloop.com/loopback/#emailsendoptions-callback
但是,这里的文档并不具体。我尝试了以下方法:
User.email
from: "info@test.com"
to: "sven@gmail.com"
subject: "hello world"
html: "<b> Hello Wolrd </b>"
这给了我这个错误,即使我有一个经过身份验证的用户实例。
POST http://localhost:3000/api/users/Emails 401 (Unauthorized) angular.js:8407
intercepted rejection of /api/users/Emails 401
我的问题是如何配置电子邮件模块以设置 SMTP 等。任何帮助将不胜感激。
谢谢斯文