1.0.4 • Published 2 years ago

node-email-sending v1.0.4

Weekly downloads
-
License
ISC
Repository
-
Last release
2 years ago

This is a Npm full package to send email in nodejs Through like Nodemailer , but you did not need to code multi line just follow the steps

1. RUN npm install node-email-sending 2. require node-email-sending = ('node-email-sending'); 3. Need to send params and all the values require to send like

  1. let data ={ host:"XXXXXXX", post:XXX, secure:XXX, user:XXXX, password:XXXX, emailto:XXXXX, subject:"Hello", text: XXXXXX, // plain text body html:"Hello world?", // html body }

and when you are going to call this package pass this data in the function like

5. node-email-sending(data);

Happy Coding !!