23 lines
601 B
TypeScript
23 lines
601 B
TypeScript
import config from "~/config/config.server";
|
|
|
|
export async function addSubscriber(email: string) {
|
|
const { apiKey, audienceId } = config.mailchimp;
|
|
const region = apiKey.split("-")[1];
|
|
const url = `https://${region}.api.mailchimp.com/3.0/lists/${audienceId}/members`;
|
|
const data = {
|
|
email_address: email,
|
|
status: "subscribed",
|
|
};
|
|
const base64ApiKey = Buffer.from(`any:${apiKey}`).toString("base64");
|
|
const headers = {
|
|
"Content-Type": "application/json",
|
|
Authorization: `Basic ${base64ApiKey}`,
|
|
};
|
|
|
|
return fetch(url, {
|
|
body: JSON.stringify(data),
|
|
headers,
|
|
method: "post",
|
|
});
|
|
}
|