Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions web/mkdocs/docs/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,15 @@ curl -X POST \
- **Local + Cloud:** For better responsiveness, consider running a local server alongside the cloud server connection.

See also issue [#17](https://github.com/capcom6/android-sms-gateway/issues/17).

## How do I enable or disable delivery reports for messages?

As of version [1.3.0](https://github.com/capcom6/android-sms-gateway/releases/tag/v1.3.0), you have the option to enable or disable delivery reports for each message. By default, the delivery report feature is turned on. If you prefer not to receive delivery reports, you can disable them by setting the `withDeliveryReport` field to `false` in the JSON body of your message request. Here is an example of how to send a message without requesting a delivery report:

```json
{
"message": "Your message text here",
"phoneNumbers": ["79990001234", "79995556677"],
"withDeliveryReport": false
}
```