This project utilizes the Mailchimp API and Node.js to facilitate the sending of newsletters via email. The application is built using HTML, CSS, and JavaScript.
In the app.js
file, update the following variables with your Mailchimp API credentials:
const usServer = "YOUR_SERVER";
const listId = "YOUR_LIST_ID";
const user = "YOUR_USERNAME";
const apiKey = "YOUR_API_KEY";
To install the necessary dependencies, run the following command in your terminal:
npm i
Run the application using the following command:
node app.js