How to send a scheduled SMS? #59
Answered
by
caioagiani
githubfollow
asked this question in
Q&A
-
Hello, I would like to know if it is possible to send a scheduled SMS? |
Beta Was this translation helpful? Give feedback.
Answered by
caioagiani
Jan 28, 2022
Replies: 1 comment 1 reply
-
@githubfollow Hi! Yes, follow this params on PR #51 const sendSmsScheduled = await mobizon.sendSms({
recipient: process.env.NUMBER,
from: '',
text: 'SMS sent by Mobizon (scheduled).',
params: {
name: 'SMS Scheduled',
deferredToTs: '2022-01-26 01:00:00',
},
});
console.log(sendSmsScheduled); |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
githubfollow
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@githubfollow Hi!
Yes, follow this params on PR #51