add_action('wpcf7_mail_sent', function($contact_form) { $submission = WPCF7_Submission::get_instance(); if (!$submission) return; $title = $contact_form->title(); $data = $submission->get_posted_data(); $payload = [ 'form_title' => $title, 'name' => $data['your-name'] ?? '', 'email' => $data['your-email'] ?? '', 'phone' => $data['your-phone'] ?? '', 'service' => $data['your-service']?? '', 'message' => $data['your-message']?? '', 'utm_source' => $_COOKIE['utm_source'] ?? '', 'utm_medium' => $_COOKIE['utm_medium'] ?? '', 'utm_campaign' => $_COOKIE['utm_campaign'] ?? '', 'timestamp' => gmdate('c') ]; $webhook_url = 'https://hook.eu2.make.com/b8mdopfa7gbk91sg9nstd9jhxkma08rv'; $args = [ 'headers' => [ 'Content-Type' => 'application/json' ], 'body' => wp_json_encode($payload), 'timeout' => 3 ]; wp_remote_post($webhook_url, $args); });
Show more