This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
mailchimp.js
131 lines (102 loc) 路 3.54 KB
/
mailchimp.js
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/* eslint-disable no-console */
// newsletter scheduling with MailChimp
import moment from 'moment';
import { getSetting, registerSetting } from 'meteor/vulcan:core';
import Newsletters from '../../modules/collection.js';
import MailChimpNPM from 'mailchimp';
import { createError } from 'apollo-errors';
registerSetting('mailchimp', null, 'MailChimp settings');
/*
API
*/
const settings = getSetting('mailchimp');
if (settings) {
const { apiKey, listId, fromName, fromEmail } = settings;
const mailChimpAPI = new MailChimpNPM.MailChimpAPI(apiKey, { version : '2.0' });
const callSyncAPI = ( section, method, options, callback ) => {
const wrapped = Meteor.wrapAsync( mailChimpAPI.call, mailChimpAPI );
return wrapped( section, method, options );
};
/*
Methods
*/
Newsletters.mailchimp = {
// add a user to a MailChimp list.
// called when a new user is created, or when an existing user fills in their email
subscribe(email, confirm = false) {
try {
const subscribeOptions = {
id: listId,
email: {email: email},
double_optin: confirm
};
// subscribe user
const subscribe = callSyncAPI('lists', 'subscribe', subscribeOptions);
return {result: 'subscribed', ...subscribe};
} catch (error) {
console.log(error)
let name;
const message = error.message;
if (error.code == 214) {
name = 'has_unsubscribed';
} else if (error.code == 214) {
name = 'already_subscribed';
} else {
name = 'subscription_failed';
}
const NewsletterError = createError(name, { message });
throw new NewsletterError({ data: {path: 'newsletter_subscribeToNewsletter', message}});
}
},
// remove a user to a MailChimp list.
// called from the user's account
unsubscribe(email) {
try {
const subscribeOptions = {
id: listId,
email: {email: email},
delete_member: true // delete the member from the list to make it possible for him to *resubscribe* via API (mailchimp's spam prevention policy)
};
// unsubscribe user
const subscribe = callSyncAPI('lists', 'unsubscribe', subscribeOptions);
return {result: 'unsubscribed', ...subscribe};
} catch (error) {
throw new Error("unsubscribe-failed", error.message);
}
},
send({ subject, text, html, isTest = false }) {
try {
var campaignOptions = {
type: 'regular',
options: {
list_id: listId,
subject: subject,
from_email: fromEmail,
from_name: fromName,
},
content: {
html: html,
text: text
}
};
// create campaign
const mailchimpNewsletter = callSyncAPI('campaigns', 'create', campaignOptions);
console.log('// Newsletter created');
// console.log(campaign)
const scheduledMoment = moment().utcOffset(0).add(1, 'hours');
const scheduledTime = scheduledMoment.format("YYYY-MM-DD HH:mm:ss");
const scheduleOptions = {
cid: mailchimpNewsletter.id,
schedule_time: scheduledTime
};
// schedule campaign
const schedule = callSyncAPI('campaigns', 'schedule', scheduleOptions); // eslint-disable-line
console.log('// Newsletter scheduled for '+scheduledTime);
return mailchimpNewsletter;
} catch (error) {
console.log(error);
return false;
}
}
}
}