function beehiiv_subscribe() {
$email = sanitize_email($_POST['email']);
$api_key = 'YOUR_BEEHIIV_API_KEY';
$publication_id = 'YOUR_PUBLICATION_ID';
$response = wp_remote_post(
"https://api.beehiiv.com/v2/publications/$publication_id/subscriptions",
[
'headers' => [
'Authorization' => "Bearer $api_key",
'Content-Type' => 'application/json'
],
'body' => json_encode([
'email' => $email,
'reactivate_existing' => true,
'send_welcome_email' => true
])
]
);
if (is_wp_error($response)) {
wp_send_json_error('Subscription failed');
} else {
wp_send_json_success('Subscribed successfully');
}
}
Off The Record Archives – Page 322 of 668 – Daily Positive Information
Daily Positive Information
To Top