Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Alternative other than Node-Mailer to use in Contact Form?

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.

like image 369
Wasi Xam Avatar asked Sep 20 '25 01:09

Wasi Xam


1 Answers

Try Postmark.js. It's simpler Or emailjs

like image 73
Pradyumna Swain Avatar answered Sep 22 '25 04:09

Pradyumna Swain