diff --git a/src/utils.ts b/src/utils.ts index a8ae250..94dd60c 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -59,6 +59,8 @@ const sendSms = (phoneNumber: string, message: string) => { to: phoneNumber, body: message, }) + .then(message => console.log(message.sid)) + .catch(error => console.error(error)) } const sendEmail = (email: string, message: string) => {