Skip to content

Commit

Permalink
Merge pull request #2 from dudufl/master
Browse files Browse the repository at this point in the history
Transliteration and SMS language config for portuguese
  • Loading branch information
mjlogan committed Sep 18, 2017
2 parents 791ca4b + 4cc6614 commit dad76df
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Api/InfoBipApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,9 @@ public function sendSms($number, $content)
$data = [
'from' => "InfoSMS",
'to' => $number,
'text' => $messageBody
'text' => $messageBody,
'language' => ['languageCode' => 'PT'],
'transliteration' => 'NON_UNICODE'
];

$curl = curl_init();
Expand Down

0 comments on commit dad76df

Please sign in to comment.