I\'ve created a simple react
redux
app (using webpack
) with a contact form which when the user clicks submit I want to generate and se
node.js is for server side JavaScript, and allows you to do many things that can't be done in a browser.
Sending email is not something that can be done in the sandbox provided by a browser, beyond the limited capabilities of mailto links which can basically pop up the user's email client with some links filled in.
You need to implement server side code to do this, triggered by some action from the client, which could be node.js and nodemailer.