Skip to content

Latest commit

 

History

History
71 lines (61 loc) · 1.36 KB

README.md

File metadata and controls

71 lines (61 loc) · 1.36 KB

Mass-Mailer

Mass-Mailer is a mass mailing dispatcher through which anyone can send mail to a number of recipients by following these two steps:-

  1. Uploading a .csv file containing the recipients mail-addresses
  2. Providing their (Sender) name,mail id, mail subject and mail content.

Steps to use it on your local device

  1. Clone the repository
  2. Open the folder in your text editor and follow the below steps
  3. Terminal
    • Client Side

    • cd mmd
      
      npm install
      npm start
    • Server Side

    • Open new Terminal

      cd backend
      npm install

      Create two files inside the backend folder.

      • apiKey.js
      • demo.js

      In apiKey.js

      (Make sure that your sendinblue SMTP account is activated)

        const apiKey="your sendinblue apiKey"
        module.exports=apiKey

      In demo.js

      const demoMail="Your mail address"
      module.exports=demoMail

      After that run

      node app.js

    For PPT and Demo, go to the link provided below -

    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