cleaner landing page
This commit is contained in:
12
app/utils/discord.server.ts
Normal file
12
app/utils/discord.server.ts
Normal file
@ -0,0 +1,12 @@
|
||||
import config from "~/config/config.server";
|
||||
|
||||
const { webhookId, webhookToken } = config.discord;
|
||||
|
||||
export function executeWebhook(email: string) {
|
||||
const url = `https://discord.com/api/webhooks/${webhookId}/${webhookToken}`;
|
||||
return fetch(url, {
|
||||
body: JSON.stringify({ content: `\`${email}\` just joined Shellphone's waitlist` }),
|
||||
headers: { "Content-Type": "application/json" },
|
||||
method: "post",
|
||||
});
|
||||
}
|
22
app/utils/mailchimp.server.ts
Normal file
22
app/utils/mailchimp.server.ts
Normal file
@ -0,0 +1,22 @@
|
||||
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",
|
||||
});
|
||||
}
|
Reference in New Issue
Block a user