• Resolved rgraulus

    (@rgraulus)


    How do I send out SMS notifications to our members using Elementor Alert as the trigger event? Please advise. Thanks.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Mostafa Soufi

    (@mostafas1990)

    Hello,

    I’m unsure if Elementor triggers any actions while creating an alert. However, assuming the action name is elementor_alert_created, here’s an example of how to send an SMS when this event occurs:

    add_action('elementor_alert_created', function ($alert_content) {
    
        $receivers = [
            '+1111111111', '+1111111112', // ...
        ];
    
        wp_sms_send($receivers, $alert_content);
    
    });
Viewing 1 replies (of 1 total)
  • The topic ‘SMS Alert Notifications’ is closed to new replies.