admin管理员组文章数量:1326073
I have a one page website that works with node.js, using this as web.js:
var connect = require('connect');
var serveStatic = require('serve-static');
var port = Number(process.env.PORT || 5000);
connect().use(serveStatic(__dirname)).listen(port);
There is no routing.
I want to add a contact form. We don't have to use node-mailer for the job, if you have any better ideas I'd love to hear.
I have a one page website that works with node.js, using this as web.js:
var connect = require('connect');
var serveStatic = require('serve-static');
var port = Number(process.env.PORT || 5000);
connect().use(serveStatic(__dirname)).listen(port);
There is no routing.
I want to add a contact form. We don't have to use node-mailer for the job, if you have any better ideas I'd love to hear.
Share Improve this question edited Jan 6, 2015 at 15:02 Wasi Xam asked Jan 6, 2015 at 11:56 Wasi XamWasi Xam 511 gold badge1 silver badge4 bronze badges 4- 1 What are your actual requirements, and why doesn't node-mailer appeal to you? – Paul Commented Jan 6, 2015 at 12:00
- The contact form will send a mail to a gmail account, using gmail with the following information: Name, Phone number, mail, text. – Wasi Xam Commented Jan 6, 2015 at 12:02
- Effectively dead now - nodemailer./status – tjmoore Commented Jul 15, 2017 at 16:24
- 2 How is nodemailer dead now? It's sponsered and has over 50+ contributors. It's a very mature library currently with only 4 open issues and actively maintained. – Isaac Pak Commented Nov 19, 2018 at 17:43
1 Answer
Reset to default 6Try Postmark.js. It's simpler Or emailjs
本文标签: javascriptAlternative other than NodeMailer to use in Contact FormStack Overflow
版权声明:本文标题:javascript - Alternative other than Node-Mailer to use in Contact Form? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1742196489a2431176.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论