-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.js
More file actions
69 lines (54 loc) · 1.76 KB
/
Copy pathapp.js
File metadata and controls
69 lines (54 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
const express = require("express");
const https = require("https");
const bodyParser = require("body-parser");
const request = require("request");
const app = express();
app.use(bodyParser.urlencoded({ extended: true }));
app.use(express.static("public"));
app.get("/", function (request, response) {
response.sendFile(__dirname + "/signUp.html");
});
app.post("/", function (request, response) {
const firstName = request.body.firstName;
const lastName = request.body.lastName;
const email = request.body.email;
const data = {
members: [
{
email_address: email,
status: "subscribed",
merge_fields: {
FNAME: firstName,
LNAME: lastName,
}
}
]
};
const jsonData = JSON.stringify(data);
const url = 'https://us7.api.mailchimp.com/3.0/lists/a071131e3e';
const options = {
method: "POST",
auth: "indrajitroy96:608cf2f48345e346a7e7e6be35b2f5fb-us7"
};
const mailChimpRequest = https.request(url, options, function (mailChimpResponse) {
console.log(mailChimpResponse.statusCode);
if(mailChimpResponse.statusCode===200){
response.send("<h1>Success</h1>")
}else{
response.send("<h1>There was an error</h1>")
}
response.on("data", function (dataReceived) {
console.log(JSON.parse(dataReceived));
});
});
mailChimpRequest.write(jsonData);
mailChimpRequest.end();
console.log(firstName + lastName + email);
});
app.listen(process.env.PORT || 3000, function () {
console.log("Server is running on port 3000");
});
// API KEY
// 608cf2f48345e346a7e7e6be35b2f5fb-us7
// List ID
// a071131e3e