Send reminder SMS
Hi everyone
I am trying to send an appointment SMS reminder referred to an DATA FIELD.
How is this possibly, if it is!
I look on Zapier, but can't find the right app.
thanks in advance.
8 replies
-
Cirugia Toracica
This can be done with messagebird.com using the API of messagebird. Code example:
let response := do as server http("POST", "https://rest.messagebird.com/messages", { 'Content-Type': "application/json", Authorization: "AccessKey " + 'API-key' }, { recipients: recipient, originator: Originator, body: Message }) end; alert(text(response))
where 'API-key' is the messagebird api key (text field),
recipient is the receiver's phone number (text field),
Originator is your phone number used to login to messagebird (text field)
Message is the sms message (text field)
Steven
-
thanks for response.
but how to trigger the SMS 24 hs before date?
-
Cirugia Toracica If you did decide to use a timed script then have a look my simple step-by-step guide here https://forum.ninox.com/t/x2hbzyb/timed-scripts
Content aside
-
1
Likes
- 1 yr agoLast active
- 8Replies
- 368Views
-
6
Following