Hi all
I'm a new Studio user and looking for a simple pause function. My studio layout has a series of text messages sent to the user. I'd like to input a short pause (2-4 seconds) between each message which will allow them to read each message before the next arrives. I guess one option would be to send one long message, but I find sometime they get out of order.
Here is what I tried, however I do not know node.js, so I basically just pulled this from stackoverflow and it wasn't a relevant answer to twilio studio.
function timer() {
console.log('timer has started')
}
setTimeout(timer, 4000);
I put the function between two messages but it didn't seem to pause at all.
Thanks for any help!