-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/altiria/sms-php-client
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
|
||
# Altiria, cliente envío de SMS con PHP | ||
|
||
![](https://img.shields.io/badge/version-1.0.0-blue.svg) | ||
![](https://img.shields.io/badge/version-1.0.2-blue.svg) | ||
|
||
Altiria SMS PHP es el cliente de envío de SMS que simplifica al máximo la integración del API SMS para PHP de Altiria. | ||
- **Envíos de SMS individuales** | ||
|
@@ -44,7 +44,7 @@ En este caso, añadir el siguiente fragmento al fichero composer.json. | |
|
||
<pre> | ||
"require": { | ||
"altiria/sms-php-client": "1.0.0" | ||
"altiria/sms-php-client": "1.0.2" | ||
} | ||
</pre> | ||
|
||
|
@@ -91,7 +91,7 @@ use \AltiriaSmsPhpClient\AltiriaModelTextMessage; | |
|
||
try { | ||
//Personaliza las credenciales de acceso | ||
$client = new AltiriaClient('[email protected]', 'mypassword', 5000); | ||
$client = new AltiriaClient('[email protected]', 'mypassword', false, 5000); | ||
$textMessage = new AltiriaModelTextMessage('346XXXXXXXX', 'Mensaje de prueba'); | ||
$client-> sendSms($textMessage); | ||
echo '¡Mensaje enviado!'; | ||
|
@@ -111,15 +111,15 @@ try { | |
|
||
#### Ejemplo básico con remitente | ||
|
||
Se trata de la opción más sencilla para realizar un envío de SMS añadiendo remitente. | ||
Se trata de la opción más sencilla para realizar un envío de SMS añadiendo remitente. En este caso, se ilustra cómo realizar una autentificación mediante APIKEY, donde "XXXXXXXXXX" es el parámetro **apiKey** y "YYYYYYYYYY" el parámetro **apiSecret**. | ||
|
||
```php | ||
use \AltiriaSmsPhpClient\AltiriaClient; | ||
use \AltiriaSmsPhpClient\AltiriaModelTextMessage; | ||
|
||
try { | ||
//Personaliza las credenciales de acceso | ||
$client = new AltiriaClient('[email protected]', 'mypassword'); | ||
$client = new AltiriaClient('XXXXXXXXXX', 'YYYYYYYYYY', true); | ||
$textMessage = new AltiriaModelTextMessage('346XXXXXXXX', 'Mensaje de prueba', 'miRemitente'); | ||
$client-> sendSms($textMessage); | ||
echo '¡Mensaje enviado!'; | ||
|