Found 170 repositories(showing 30)
monumarquis
Clone of E-commerce website MailChimp which gives platform to the users to create thier own store. A collaborative project built by a team of 5 full stack web developers executed in 5 days.
NaziaSayyad
Clone of E-Marketing website MailChimp which gives platform to the users to create thier own store. MailChimp also provide some mail and website templates to create good and professional mails. It is a collaborative project which is done with the help of 5 members in a week.
monumarquis
Clone of E-commerce website MailChimp which gives platform to the users to create thier own store. A collaborative project built by a team of 5 full stack web developers executed in 5 days.
Avi-40
A Web-app made using mailchimp API to store emails and username of subscribers to newsletter.
Setting up an internal API, to store a users' email to your Mailchimp Account using Nextjs and Express, follwing along the builderbook Example
anshgoyalevil
A newsletter signup page with Bootstrap for styling, and Expres.JS and Node.JS at the backend, and uses the MailChimp API to store the data of the subscribed users.
gauri02saxena
This project aims to create a sign-up form for "The Daily Gazette," a newsletter website that provides daily news updates to its subscribers. The form allows users to enter their details and subscribe to the newsletter, and the submitted information is stored using the Mailchimp API.
websoriful
I am web soriful. Web Development, WordPress & WooCommerce/Shopify Developer/ YouTube & Digital marketing Expert. As a freelancer Completed 143 Projects of 27 country's 107 client's at various marketplaces since 2018. I have excellent experience with setting up Payment methods, Shipping classes, etc 👉 MY Skills: (Web Dev, WordPress & WooCommerce/ Shopify Developer} 🗣Your Best Offer: I'll do it for you. 👉 WordPress theme & plugin development & customization 👉 Personal/Business Website using WordPress 👉 Bootstrap coded responsive PSD to HTML/Bootstrap 👉 Page Builder - visual composer, Elementor, Divi 👉 Shopify Store Design & Theme / Product/ app/ sales channel 👉 eCommerce/ woocommerce Website/ Website speed increase & SEO 👉 Landing Page/ Lead pages/ Single or multi Page HTML website. 👉 Payment gateway - Paypal & Stripe Integration & FB Pixel 👉 Mailchimp/ Get Response Email Template/Campaign/ Subscriber & woo commerce Automation 👉 Login Registration Form/ Contact us Form/ Sign in- SignUp Page Creation & Pop Up Form 👉 Social Button & social sharing, Auto Responder/ facebook pixel. 👉 Lead Generation/ Virtual Assistant/ Web Researcher/ Data Entry Expert ✍ My Service Specialty👌 ✔️ 100% Working Skills ✔️ 24/7 Hours Support ✔️ More than 40 Hours/Week⌚ ✔️ 100% Satisfaction Guaranteed ✔️ On-time Delivery ✔️ Quality Work ✔️ Cost-effective Please Contact my Inbox. Tell me Your query. I will try my best to solve your problem. 💬💬💬 Thanks for visiting my profile⌚
concretecms-community-store
Subscribe Community Store customers to MailChimp lists based on products purchased.
swapnilsardeshmukh
Newsletter (local server to webServer(heroku)to store our contact in mailchimp via using mailchimp api
John-Wambua
Uses Node.js with Mailchimp API to store user data
paarthjaiswal
Subscription page for updates utilizing the Mailchimp API to store user data.
kes-phyl
A news-letter to store email addresses using Mailchimp API, succrssfully deployed in heroku
Mysteriousdevil14
it is newsletter website developed using HTML,CSS, Nodejs, Expressjs and Mailchimp to store data
sourav-yadav-11
This is a simple web app to illustrate the working of MailChimp Marketing API, that how to store data entered by the users in the MailChimp database.
faizan0505
Mailchimp Clone - Frontend Website used mock API for fetching data and local storage for storing data
JavascriptDon
A newsletter subscription page that interfaces with Mailchimp API to collect and store all user data.
sprathamk
Used Express.js and mailchimp api to create a signup page for news letter. All the information of the user is stored in a database on mailchimp admin dashboard
kundan799
Mailchimp is a marketing automation platform and email marketing service. we build clone of their store website.
tonmoy-cpu
It is a sign UP page. i have use mailchimp api to store the datas of the user.
ItisCyph3r
An Investment website which makes use of MailChimp api to store details of users signing up for a newletter
I have made newsletter signup website where user can signup and after that I am storing their data in the backend using api service of mailchimp. Basically mailchimp is providing the facility of database where it can store data automatically. Further I have deployed my website on Heroku too
Tarun01-guleria
This is sign up app using node and express I have use mailchimp api to store the form information and used https module , express module and require module
ayushkanyal
This is a simple e-mail collection web application I made using node-js and express library. Users enter their details which are then stored in dtabase using mailchimp api.
Siddu-P
Email Marketing -> A log in page which a user can enter their data and it can be stored in our mailchimp audience list, which further can be used to send subscription mails.
PriyadarshiniSivakumar
You can create your signup page and the user who are signing up information will be stored in mailchimp as other party as Storage. It is also used the api key as interface.
chauga9999
ss: 1) user authentication 2) exchanging the code for the access token and 3) making your first authenticated request on behalf of the user. Implement the OAuth 2 workflow on your server NODE.JS const express = require("express"); const querystring = require("querystring"); const bodyParser = require("body-parser"); const fetch = require("node-fetch"); const { URLSearchParams } = require("url"); const mailchimp = require("@mailchimp/mailchimp_marketing"); // Basic express app setup const app = express(); app.use(bodyParser.json()); app.use( bodyParser.urlencoded({ extended: true }) ); // You should always store your client id and secret in environment variables for security — the exception: sample code. const MAILCHIMP_CLIENT_ID = "YOUR_CLIENT_ID"; const MAILCHIMP_CLIENT_SECRET = "YOUR_CLIENT_SECRET"; const BASE_URL = "http://127.0.0.1:3000"; const OAUTH_CALLBACK = `${BASE_URL}/oauth/mailchimp/callback`; // 1. Navigate to http://127.0.0.1:3000 and click Login app.get("/", function(req, res) { res.send( '<p>Welcome to the sample Mailchimp OAuth app! Click <a href="/auth/mailchimp">here</a> to log in</p>' ); }); // 2. The login link above will direct the user here, which will redirect // to Mailchimp's OAuth login page. app.get("/auth/mailchimp", (req, res) => { res.redirect( `https://login.mailchimp.com/oauth2/authorize?${querystring.stringify({ response_type: "code", client_id: MAILCHIMP_CLIENT_ID, redirect_uri: OAUTH_CALLBACK })}` ); }); // 3. Once // 3. Once the user authorizes your app, Mailchimp will redirect the user to // this endpoint, along with a code you can use to exchange for the user's // access token. app.get("/oauth/mailchimp/callback", async (req, res) => { const { query: { code } } = req; // Here we're exchanging the temporary code for the user's access token. const tokenResponse = await fetch( "https://login.mailchimp.com/oauth2/token", { method: "POST", body: new URLSearchParams({ grant_type: "authorization_code", client_id: MAILCHIMP_CLIENT_ID, client_secret: MAILCHIMP_CLIENT_SECRET, redirect_uri: OAUTH_CALLBACK, code }) } ); const { access_token } = await tokenResponse.json(); console.log(access_token); // Now we're using the access token to get information about the user. // Specifically, we want to get the user's server prefix, which we'll use to // make calls to the API on their behalf. This prefix will change from user // to user. const metadataResponse = await fetch( "https://login.mailchimp.com/oauth2/metadata", { headers: { Authorization: `OAuth ${access_token}` } } ); const { dc } = await metadataResponse.json(); console.log(dc); // Below, we're using the access token and server prefix to make an // authenticated request on behalf of the user who just granted OAuth access. // You wouldn't keep this in your production code, but it's here to // demonstrate how the call is made. mailchimp.setConfig({ accessToken: access_token, server: dc }); const response = await mailchimp.ping.get(); console.log(response); res.send(` <p>This user's access token is ${access_token} and their server prefix is ${dc}.</p> <p>When pinging the Mailchimp Marketing API's ping endpoint, the server responded:<p> <code>${response}</code> `); // In reality, you'd want to store the access token and server prefix // somewhere in your application. // fakeDB.getCurrentUser(); // fakeDB.storeMailchimpCredsForUser(user, { // dc, // access_token // }); }); app.listen(3000, "127.0.0.1", function() { console.log( "Server running on port 3000; visit http://127.0.0.1:3000" ); });
Pratikkapadia7
Created a signup page using Node.js and storing the entered data on Mailchimp account using API. The website is live and was deployed using Heroku go check it out on https://frozen-spire-62458.herokuapp.com
paulacolombam
The project encompassed the creation of a fictional pet store and the development of a Shopify website. Key components included SEO implementation for improved search engine visibility, establishment of social media channels, utilization of Google Ads campaigns to target new customers, implementation of a Mailchimp campaign and results through UA.
onkaryemul
The Newsletter-Signup project is a web application that allows users to subscribe to a newsletter. Users can enter their first name, last name, and email address to receive updates, news, or promotional content from the website. The application integrates with the Mailchimp API to securely store user information and manage the email list.