Home > Enterprise >  Is it possible to send emails automatically to users from front-end React JS?
Is it possible to send emails automatically to users from front-end React JS?

Time:03-31

Is there a method that allows me to automatically send an emails to users when they click a button? I have the email-address and the data that needs to be sent available in the front-end of our React application.

For now in research mode...

CodePudding user response:

Have a look at EmailJS

You have to create a service. They have an option for personal mail service as well. I am sharing two links for your reference as well.

Link1 and Link2

CodePudding user response:

You cant not send email directly from client side however you can try emailjs or NodeMailer. This will allow you to send mail from javascript application without any server.

  • Related