Files
medusa-store/packages/medusa-plugin-twilio-sms
Shahed Nasser 4583df8367 chore: added keywords for plugins (#1707)
* added keywords for plugins

* updated shopify plugin keywords
2022-06-23 16:12:33 +02:00
..
2020-09-09 10:52:58 +02:00
2022-06-19 13:11:05 +02:00
2020-09-09 10:52:58 +02:00
2022-05-20 11:40:57 +03:00
2021-05-26 14:43:10 +02:00

medusa-plugin-twilio-sms

Twilio SMS / Messaging plugin.

Learn more about how you can use this plugin in the documentaion.

Options

{
  account_sid: "[twilio messaging account sid]", // required
  auth_token: "[twilio massaging authentication token]", // required
  from_number: "[the number used as sender SMS]",
}

Dynamic usage

You can resolve the Twilio SMS service to dynamically send SMS's via Twilio.

Example:

const twilioSmsService = scope.resolve("twilioSmsService")
twilioSmsService.sendSms({ to: "+4500112233", body: "Hello world!" })