Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
altiria committed Mar 25, 2022
2 parents 84e9271 + e1d1781 commit 84e308f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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**
Expand Down Expand Up @@ -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>

Expand Down Expand Up @@ -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!';
Expand All @@ -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!';
Expand Down

0 comments on commit 84e308f

Please sign in to comment.