Alarm events sent by email or SMS

Forum Home Forums Understanding the Software Alarm events sent by email or SMS

Tagged: 

Viewing 9 posts - 16 through 24 (of 24 total)
  • Author
    Posts
  • #2393
    tamvu
    Participant

    Hi,
    I have tried the Automatic Control Module. Then I add a data trigger of “tag1” to send command to Email device when tag1’s value is lower than 100. How can I get tag1’s value to the command? By the way, can I create email templates when sending an email command because currently the email command format is “{email}; {title}; {body}” ?

    #2394
    Mikhail
    Moderator

    Hi,
    In the current version of the module, command data are fixed.
    The new version that support variables is in testing phase. It will be available soon. You can request for the update after a week.

    #2413
    tamvu
    Participant

    Thanks Mikhail

    #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 1 year, 5 months ago by Mikhail.
    #11231
    Mikhail
    Moderator

    There are a lot of online SMS services depending on country.

    #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 1 year, 5 months ago by Mikhail.
    #11244
    Mikhail
    Moderator

    As for me, I prefer Telegram messenger for notifications.

    #11342
    victorlam
    Participant

    Hello,

    Kindly advise any members have the successful stories that can use email or SMS to get the alert here. Kindly help to share your full procedures and step so that we can learn to use accordingly.

    Thanks for the help on this.

    #11364
    Mikhail
    Moderator

    Hello,
    Sending emails successfully is described in this topic.

Viewing 9 posts - 16 through 24 (of 24 total)
  • You must be logged in to reply to this topic.