6

So, how do reactjs developers send a contact form email? I've searched almost 3 pages of Google results and cannot find anything useful.

Comments
  • 3
    react is a frontend framework. sending an email is a backend task.
  • 3
    send post request to backend route, backend then sends email trough idk sendgrid or some other tool or provider

    if you need that for 'contact me' form and you are using netlify just add netlify attribute to the form tag, or you can use some simple and free services like usebasin.com, i used on one site and i am sending request with ajax, its pretty fly if u ask me!
  • 0
    Right now I can go with express + nodemailer to do that task but very little information is given about that, integrating reactjs
Add Comment