# message > New in v0.6.6 (beta) The `message` verb is used to send an SMS via a carrier using the [SMPP](https://smpp.org/) protocol. It requires that you have added a BYOC carrier configured that supports SMS. > You can also send SMS via the REST API. [See here](https://api.jambonz.org/#54f1de57-3740-49f3-bd29-e68541d63dc3) for more details on that. ```json { "verb": "message", "to": "15083084809", "from": "16173334567", "text": "Your one-time passcode is 1234", "actionHook": "/sms/action" } ``` You can use the following options in the `message` verb: | option | description | required | | ------------- |-------------| -----| | from | sending number | yes | | to | destination number | yes | | text | text message to send | yes | | carrier | name of BYOC carrier to use (useful only when you have multiple carriers configured with SMPP support, otherwise leave out) | no | | actionHook | A webhook that is called when the message verb completes | no |