Setup a React contact form that sends an email using Node.js

1 · Michael Burrows · Sept. 23, 2020, 2:05 a.m.
Summary
In this tutorial we’ll be setting up a contact form in a React application that sends and email using Node.js upon successful submission. Let’s get started by installing Axios which we’ll use to handle the form POST request: Next create a new file for the contact form component called ContactForm.js and add the following code: […]...