2017 © Pedro Peláez
 

library luxsci-api-client-php

LuxSci API client for php

image

eherrera/luxsci-api-client-php

LuxSci API client for php

  • Monday, April 2, 2018
  • by eherrera
  • Repository
  • 1 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 5 Versions
  • 0 % Grown

The README.md

luxsci-api-client-php

LuxSci API client for php, (*1)

Demo, (*2)

Send a SecureLine Secure Email and/or SecureText, (*3)

use LuxSciApiClient\LuxSciAPIv2Client;
use LuxSciApiClient_Model\BodyType;
use LuxSciApiClient_Model_V2\SendEmailOrTextRequest;

// Initialize client

$client = new LuxSciAPIv2Client(
    'your_token',
    'your_secret',
    'your_user',
    'your_pass'
);

// Fill request params
$sendEmailOrTextRequest = new SendEmailOrTextRequest();
$sendEmailOrTextRequest->from_name = "your_name";
$sendEmailOrTextRequest->from_address = "from_email@test.info";
$sendEmailOrTextRequest->to = ['to_email1@test.info'];
$sendEmailOrTextRequest->subject = 'Testing from API';
$sendEmailOrTextRequest->body_type = BodyType::Html;
$sendEmailOrTextRequest->body = "

<

h1>Hello!!

<

h1>

Testing from API, (*4)

"; $client->sendEmailOrText($sendEmailOrTextRequest);

The Versions

02/04 2018

dev-master

9999999-dev

LuxSci API client for php

  Sources   Download

MIT

The Requires

  • php ^5.3.3 || ^7.0

 

by Ernesto Herrera Morales

02/04 2018

v1.0.0.2

1.0.0.2

LuxSci API client for php

  Sources   Download

MIT

The Requires

  • php ^5.3.3 || ^7.0

 

by Ernesto Herrera Morales

02/04 2018

dev-develop

dev-develop

LuxSci API client for php

  Sources   Download

MIT

The Requires

  • php ^5.3.3 || ^7.0

 

by Ernesto Herrera Morales

30/03 2018

v1.0.0.1

1.0.0.1

LuxSci API client for php

  Sources   Download

MIT

The Requires

  • php ^5.3.3 || ^7.0

 

by Ernesto Herrera Morales

30/03 2018

v1.0.0.0

1.0.0.0

LuxSci API client for php

  Sources   Download

MIT

by Ernesto Herrera Morales