使用react js通过nodemailer发送邮件

时间:2018-06-22 09:04:30

标签: reactjs nodemailer

我正在尝试通过页面中的nodemailer发送邮件。

我正在使用React js作为前端。

当我尝试使用npm run dev运行服务器时,收到此消息

npm run server

npm run client exited with code -4058

我无法理解代码-4058是什么意思。

1 个答案:

答案 0 :(得分:0)

。您首先无法通过nodemailer来发送邮件,因为它是服务器端而不是浏览器上的nodejs模块工作。

您可以mailto电子邮件链接

<a href="mailto:nowhere@mozilla.org">Send email to nowhere</a>

或者您提到过,REST API使用数据拨打快递,以发送电子邮件并从那里发送电子邮件。

相关问题