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 1d41740 commit 8a7976aCopy full SHA for 8a7976a
examples/send-sms-campaign.php
@@ -28,6 +28,12 @@
28
29
$content = $client->send($request);
30
31
+if (!array_key_exists('code', $content)) {
32
+ echo 'Success';
33
+} else {
34
+ echo 'Failure.';
35
+}
36
+
37
// ---------------------------------
38
// Result example:
39
src/Request/SmsCampaign/SendSmsCampaignRequest.php
@@ -60,6 +60,7 @@ public function getQueryArray(): array
60
'send_at' => $this->sendAt,
61
'simulation_mode' => $this->simulationMode
62
],
63
+ 'http_errors' => false
64
];
65
66
return $this->filterQueryString($parameters);
0 commit comments