Welcome to ez4u

Existing ez4u users can login here.
Please note that username & password are CASE sensitive.

ez4u offers secure communications by encrypting all data
to and from the site, and is authenticated by SSL certificate.
At ez4u we recognize that privacy is important
We can assure you that your data are safe with us.
We will never sell your personal information to third parties.
For more information please read our privacy policy.

Not a member yet? Sign Up!

If you do not already have an account,
take a moment to create one.

You will benefit from:

  • Free credits upon registration
  • Reliable and fast delivery
  • Tools for professionals
  • Best prices in the market
Register

Member Login

Lost your password?


Send SMS using SOAP API

SOAP API for Bulk SMS sending

SOAP is a simple XML based protocol to let applications exchange information over HTTP.

SOAP provides a way to communicate between applications running on different operating systems, with different technologies and programming languages.

  • Supports text, Unicode and flash messaging.
  • Support of all languages with special characters (Arabic, Chinese, Greek etc)
  • Support for concatenated messages (long SMS)
  • Support for bulk sendings
  • Dynamic sender identity
  • Delivery reports
  • Easy to use

How to connect via SOAP

Sign up to our system. Use your free credits in order to make your tests


SOAP API Specifications:

Soap API includes two functions:

"send" for sms sending to one or multiple recipients

and

"query" for recieving delivery reports of sent messages to one or more recipients.


The "send" function accepts the following parameters:

username (string), username

password (string), password

from (string), sender’s identity

to (object), recipient(s)

coding (string), coding that message will be sent. GSM, UTF-8.

flash (boolean), flash sms (true for flash SMS, false for normal SMS)

The parameter "to" is an object with one property. The property has the identifier: recipients and it is one table of strings.

The "send" function returns one ID for the sent message.


It returns the following exceptions:

Authentication error.

No recipients.

Invalid sender identity.

Insufficient credits.


The "query" function accepts the following parameters:

username: (string), username

password: (string), password

message_id: (string), message’s ID

mobile: (string), recipient’s mobile

The "query" function returns the message’s delivery status for the specified recipient.


The returned values are:

Queued

Pending

Delivered

Failed


This request can return the following exceptions:

Authentication error.

No message ID defined.

No mobile defined.

No such message or recipient.



Sample code for SOAP API



<?php


// create soap client
$client = new SoapClient('http://ez4usms.com/api/soap/sms.wsdl');

// create recipients container
$to = new stdClass();
// add recipients
$to->recipients = array('306991111111', '306941234567');

// send message
$ID = $client->send('username', 'password', 'sender', $to, 'Είμαι το soap API!', 'UTF-8', true);

// check delivery status for each recipient
foreach( $to->recipients as $index => $recipient )
{
    echo $client->query('username', 'password', $ID, $recipient);
}

?>

Latest On Blog

Read all latest news regarding mobile marketing and SMS services.
Learn tips about bulk SMS and how to create effective SMS campaigns for your products and/or services.
Read MoreRead More

Help

Instructions on how to send SMS, upload contacts, manage reports.

SMS FAQ and video tutorials are provided for your convenience.

Check out screenshots of our SMS gateway application

View MoreView More

Contact

For questions, clarifications and comments please contact us via e-mail:

Telephone: 211 212 52 52

Fax: 217 000 52 52

Information: info@ez4u.gr
Sales: sales@ez4u.gr
Support: support@ez4u.gr

Contact NowContact Now

Newsletter

Be notified about our news regarding SMS services, products, updates and special offers in bulk SMS.
Join now our email newsletter.
Enter your email address above.