Skip to content

v0.4.3

Compare
Choose a tag to compare
@caioagiani caioagiani released this 26 Jan 16:13
1b4b790

feat(sms): add params to send SMS scheduled #51

  /** Enviar SMS agendado */
  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);