DEV Community

Discussion on: How to send Email with node js for free

Collapse
 
zxcodes profile image
Mohammed Farmaan.

Can this be done with vanilla JS? Like in React?

Collapse
 
fawazsullia profile image
fawazsullia

I guess no. you need a server to send email via nodemailer

Collapse
 
ezzabuzaid profile image
ezzabuzaid

You can't.

What you can do is to use cloud functions such as firebase functions, aws lambda or azure functions.

Collapse
 
redrogue12 profile image
Edgar X. González Cortés

Hey! To solve your problem you can create a nodejs server and create an endpoint that sends the email like in this post. In your React app you can use axios to hit the endpoint and thus sending the email. Just send the message in the parameters so it can be dynamic.

Collapse
 
zxcodes profile image
Mohammed Farmaan.

Yeah got it. Thanks for answering!😄