We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd8a1b2 commit 13b6fd1Copy full SHA for 13b6fd1
README.md
@@ -131,6 +131,15 @@ Msg91::otp()
131
->resend(); // resend otp
132
```
133
134
+## Sending SMS
135
+
136
+```php
137
+Msg91::sms()
138
+ ->to(912343434312) // set the mobile with country code
139
+ ->message("Your message here"); // provide your message
140
+ ->send(); // send
141
+```
142
143
> For all the examples and options, please consult [msg91-php examples section][client-examples]
144
145
[client]: https://github.com/craftsys/msg91-php
composer.json
@@ -25,7 +25,7 @@
25
},
26
"require": {
27
"php": ">=7.1",
28
- "craftsys/msg91-php": "^0.6",
+ "craftsys/msg91-php": "^0.7",
29
"illuminate/support": "^5.2|^6.0"
30
31
"require-dev": {
0 commit comments