jacksonjk

Forum Replies Created

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • in reply to: Alarm events sent by email or SMS #11242
    jacksonjk
    Participant

    @mikhail

    please tell me which one SMS provider is best for our application

    1) SMSala
    2) Textlocal
    3) Bulksms
    4) Dexetal
    5) Fast2sms
    6) Exotel
    7) Twilio

    • This reply was modified 2 years, 10 months ago by Mikhail.
    in reply to: Alarm events sent by email or SMS #11225
    jacksonjk
    Participant

    This can be done with messagebird.com using the API of SMSala. Code example:

    let response:= do as a server
            http("POST", "https://rest.<a href="http://smsala.com" rel="noopener" target="_blank">smsala.com</a>/messages", {
                'Content-Type': "application/json",
                Authorization: "AccessKey " + 'API-key'
            }, {
                recipients: recipient,
                originator: Originator,
                body: Message
            })
        end;
    alert(text(response))

    where ‘API-key’ is the SMSala API key (text field),

    the recipient is the receiver’s phone number (text field),

    Originator is your phone number used to login to SMSala (text field)

    The message is the SMS message (text field)

    • This reply was modified 2 years, 10 months ago by Mikhail.
Viewing 2 posts - 1 through 2 (of 2 total)