File size: 1,234 Bytes
1b72d7e |
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 |
import BLOG from '@/blog.config'
/**
* 订阅邮件-服务端接口
* @param {*} email
* @returns
*/
export default function subscribeToMailchimpApi({ email, first_name = '', last_name = '' }) {
const listId = BLOG.MAILCHIMP_LIST_ID // 替换为你的邮件列表 ID
const apiKey = BLOG.MAILCHIMP_API_KEY // 替换为你的 API KEY
if (!email || !listId || !apiKey) {
return {}
}
const data = {
email_address: email,
status: 'subscribed',
merge_fields: {
FNAME: first_name,
LNAME: last_name
}
}
return fetch(`https://us18.api.mailchimp.com/3.0/lists/${listId}/members`, {
method: 'POST',
headers: {
Authorization: `apikey ${apiKey}`,
'Content-Type': 'application/json'
},
body: JSON.stringify(data)
})
}
/**
* 客户端接口
* @param {*} email
* @param {*} firstName
* @param {*} lastName
* @returns
*/
export async function subscribeToNewsletter(email, firstName, lastName) {
const response = await fetch('/api/subscribe', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ email, first_name: firstName, last_name: lastName })
})
const data = await response.json()
return data
}
|