An open API service indexing awesome lists of open source software.

https://github.com/rishant/nodejs-nodemailer-poc

nodejs with nodemailer lib for send emails
https://github.com/rishant/nodejs-nodemailer-poc

Last synced: 7 months ago
JSON representation

nodejs with nodemailer lib for send emails

Awesome Lists containing this project

README

          

"# nodejs-nodemailer-poc"

## initilize node project
npm init

## install dependencies

npm install express nodemailer

npm install --save-dev nodemon

npm install nodemailer

npm install ejs

## API's

curl --location --request POST 'http://localhost:4000/users/create' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "Rishant Gupta",
"email": "rishantgupta007@gmail.com"
}'