Sample Page

This is an example page. It’s different from a blog post because it will stay in one place and will show up in your site navigation (in most themes). Most people start with an About page that introduces them to potential site visitors. It might say something like this:

Hi there! I’m a bike messenger by day, aspiring actor by night, and this is my website. I live in Los Angeles, have a great dog named Jack, and I like piña coladas. (And gettin’ caught in the rain.)

…or something like this:

The XYZ Doohickey Company was founded in 1971, and has been providing quality doohickeys to the public ever since. Located in Gotham City, XYZ employs over 2,000 people and does all kinds of awesome things for the Gotham community.

As a new WordPress user, you should go to your dashboard to delete this page and create new pages for your content. Have fun!

טופס OptinMonster – קידומת שמאל, טלפון ימין

📞 טופס יצירת קשר

🇮🇱 +972
🇦🇺 אוסטרליה +61
🇦🇹 אוסטריה +43
🇺🇦 אוקראינה +380
🇮🇹 איטליה +39
🇦🇪 איחוד האמירויות +971
🇮🇩 אינדונזיה +62
איראן איראן +98
🇮🇪 אירלנד +353
🇦🇷 ארגנטינה +54
🇺🇸 ארצות הברית +1
🇧🇪 בלגיה +32
🇧🇩 בנגלדש +880
🇧🇷 ברזיל +55
🇬🇧 בריטניה +44
🇩🇪 גרמניה +49
🇩🇰 דנמרק +45
🇿🇦 דרום אפריקה +27
🇰🇷 דרום קוריאה +82
🇮🇳 הודו +91
🇳🇱 הולנד +31
🇻🇳 וייטנאם +84
🇹🇭 תאילנד +66
🇹🇷 תורכיה +90
🇬🇷 יוון +30
🇯🇵 יפן +81
🇯🇴 ירדן +962
🇮🇱 ישראל +972
לבנון לבנון +961
🇲🇾 מלזיה +60
🇪🇬 מצרים +20
🇲🇽 מקסיקו +52
🇳🇴 נורווגיה +47
🇳🇿 ניו זילנד +64
🇨🇳 סין +86
🇸🇬 סינגפור +65
🇸🇾 סוריה +963
🇪🇸 ספרד +34
🇸🇦 סעודיה +966
🇮🇶 עיראק +964
🇵🇱 פולין +48
🇵🇹 פורטוגל +351
🇵🇭 פיליפינים +63
🇫🇮 פינלנד +358
🇵🇰 פקיסטן +92
🇨🇿 צ’כיה +420
🇫🇷 צרפת +33
🇨🇦 קנדה +1
🇷🇴 רומניה +40
🇷🇺 רוסיה +7
🇸🇪 שוודיה +46
🇨🇭 שווייץ +41
🔍 לא נמצאו תוצאות מתאימות
🔥 DOOM

💡 ALPINE TRAVEL













        קידומת *

        שם מלא *

        דואר אלקטרוני *

        טלפון (עם קידומת בינלאומית) *


        שלב 1: התקן את התוסף CF7 Webhook Integration
        – מהממשק הניהול: Plugins → Add New
        – חפש: “CF7 Webhook” או “Contact Form 7 to Webhook”
        – התקן ואפשר את התוסף

        שלב 2: הגדר את ה-Webhook
        – עבור לטופס CF7 שלך
        – בטאב “Webhook” או “Additional Settings”, הוסף:

        on_sent_ok: “
        fetch(‘YOUR_WEBHOOK_URL’, {
        method: ‘POST’,
        headers: {‘Content-Type’: ‘application/json’},
        body: JSON.stringify({
        prefix: ‘[prefix]’,
        fullname: ‘[fullname]’,
        email: ‘[email]’,
        country_code: ‘[country-code]’,
        phone: ‘[phone]’,
        full_phone: ‘[country-code][phone]’,
        timestamp: new Date().toISOString()
        })
        });

        שלב 3: החלף YOUR_WEBHOOK_URL
        – הכנס את כתובת ה-Webhook שלך (לדוגמה: https://hooks.zapier.com/…)

        אופציה 2: שימוש ב-functions.php (WordPress)
        הוסף את הקוד הבא ל-functions.php של התמה:

        add_action(‘wpcf7_before_send_mail’, ‘send_to_webhook’);
        function send_to_webhook($contact_form) {
        $submission = WPCF7_Submission::get_instance();
        if ($submission) {
        $data = $submission->get_posted_data();

        $webhook_data = array(
        ‘prefix’ => $data[‘prefix’],
        ‘fullname’ => $data[‘fullname’],
        ’email’ => $data[’email’],
        ‘country_code’ => $data[‘country-code’],
        ‘phone’ => $data[‘phone’],
        ‘full_phone’ => $data[‘country-code’] . $data[‘phone’],
        ‘timestamp’ => current_time(‘mysql’)
        );

        wp_remote_post(‘YOUR_WEBHOOK_URL’, array(
        ‘headers’ => array(‘Content-Type’ => ‘application/json’),
        ‘body’ => json_encode($webhook_data),
        ‘timeout’ => 15
        ));
        }
        }