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
- Host: GitHub
- URL: https://github.com/rishant/nodejs-nodemailer-poc
- Owner: rishant
- Created: 2024-02-27T12:17:28.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-27T16:29:41.000Z (almost 2 years ago)
- Last Synced: 2025-04-05T06:29:44.939Z (10 months ago)
- Language: JavaScript
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}'