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 e066c3e commit 376b3e5Copy full SHA for 376b3e5
src/Symfony/Component/Notifier/Bridge/AllMySms/AllMySmsTransport.php
@@ -64,7 +64,7 @@ protected function doSend(MessageInterface $message): SentMessage
64
$endpoint = sprintf('https://%s/sms/send/', $this->getEndpoint());
65
$response = $this->client->request('POST', $endpoint, [
66
'auth_basic' => $this->login.':'.$this->apiKey,
67
- 'body' => [
+ 'json' => [
68
'from' => $this->from,
69
'to' => $message->getPhone(),
70
'text' => $message->getSubject(),
0 commit comments