You can send a /post request directly in HTML with all the data from a form, it's been that way for decades, should be easy to figure out.
On the server, just have a app.post("/contact") ready to pick it up and do something with that data. Maybe there's a node module for sending emails? IDK
On my personal projects I've been using formspree.io to set up my contact pages to send me emails. It's incredibly simple to use if you'd like to check it out!
You can send a /post request directly in HTML with all the data from a form, it's been that way for decades, should be easy to figure out.
On the server, just have a app.post("/contact") ready to pick it up and do something with that data. Maybe there's a node module for sending emails? IDK