Tuesday 17 December 2019

nodejs contact form success message

hope someone can help....here's the code on app.js:app.post("/send", (req, res) => { const output =

You have a new contact request

Contact Details

  • Name: ${req.body.name}
  • Email: ${req.body.email}
  • Website: ${req.body.website}

Message

${req.body.message}

;​contact form:


On my localhost environment I get the Success feedback msg. But online (deployed on webserver), I don't see anything. Any ideas?

Submitted December 17, 2019 at 10:57AM by nightcrawler99

No comments:

Post a Comment