chore: setup

This commit is contained in:
Sebastian Rindom
2021-03-25 16:50:30 +01:00
parent 2b282bd742
commit c3bc8c98b4
12 changed files with 5874 additions and 0 deletions
@@ -0,0 +1,24 @@
# medusa-plugin-sendgrid
Twilio SMS / Messaging plugin.
## Plugin 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:
```js
const twilioSmsService = scope.resolve("twilioSmsService")
twilioSmsService.sendSms({ to: "+4500112233", body: "Hello world!" })
```