Mass-Mailer is a mass mailing dispatcher through which anyone can send mail to a number of recipients by following these two steps:-
- Uploading a .csv file containing the recipients mail-addresses
- Providing their (Sender) name,mail id, mail subject and mail content.
- Clone the repository
- Open the folder in your text editor and follow the below steps Terminal
- Client Side
- Server Side
- apiKey.js
- demo.js
cd mmd
npm install
npm start
Open new Terminal
cd backend
npm install
Create two files inside the backend folder.
(Make sure that your sendinblue SMTP account is activated)
const apiKey="your sendinblue apiKey"
module.exports=apiKey
const demoMail="Your mail address"
module.exports=demoMail
After that run
node app.js
https://docs.google.com/document/d/1NtQD3hmpB8BTSdk_J1jpkL-6RFBDip6ijPAtcdKRMl0/edit?usp=sharing
Make sure that node is installed in your device.
For this project I have used node version 16.15.0