Skip to content

Instantly share code, notes, and snippets.

@cypres
Created October 31, 2014 12:39
Show Gist options
  • Save cypres/02ccdec9132b34f2b653 to your computer and use it in GitHub Desktop.
Save cypres/02ccdec9132b34f2b653 to your computer and use it in GitHub Desktop.
nimta.com gateway hello world
<?php
(new SoapClient('https://soap.nimta.com?wsdl'))->sendSMSes(array(
'username' => 'USERNAME',
'password' => 'PASSWORD',
'gatewayClass' => 'A',
'messages' => array(
array(
'message' => 'Hello World!',
'charge' => 0,
'delayed' => false,
'sendTime' => time(),
'recipients' => array(
array('countryCode' => 45, 'number' => '12345678', 'operatorCode' => 4)
)
)
)
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment