Location
Atlanta
Roofing System
Architectural
678-765-2992
Request Estimate
add_action('wp_ajax_nopriv_add_to_mailchimp', 'add_to_mailchimp'); add_action('wp_ajax_add_to_mailchimp', 'add_to_mailchimp'); function add_to_mailchimp() { $email = $_POST['email']; $name = $_POST['name']; $api_key = '805c8b6305137b434f32eabdb034c0fc-us10'; $list_id = '534ce30571'; $dc = substr($api_key,strpos($api_key,'-')+1); $url = 'https://' . $dc . '.api.mailchimp.com/3.0/lists/' . $list_id . '/members/'; $data = [ 'email_address' => $email, 'status' => 'subscribed', 'merge_fields' => [ 'FNAME' => $name ], 'tags' => ['pdf-download'] ]; $response = wp_remote_post($url, [ 'headers' => [ 'Authorization' => 'apikey ' . $api_key, 'Content-Type' => 'application/json' ], 'body' => json_encode($data) ]); echo json_encode(['success' => true]); wp_die(); }