Happy !

JulienDelplanque / AndroidSmsGateway

Project infos

License MIT
Tags sms api client
Creation date 2015-03-07
Website https://play.google.com/store/apps/details?id=eu.apksoft.android.smsgateway

Monticello registration

About AndroidSmsGateway

A simple implementation of an interface to the Sms Gateway written in pharo!

Example of use:

| client request result |

client := ASGClient withIp: '192.168.0.1' port: 9090 password: 'aStrongPassword'.

request := ASGRequest phoneNumber: '0442424242' text: 'Hello from Pharo!'.

"The result will contain a very simple html doc that contains 'Mesage SENT!' if everything goes well."

result := client sendRequest: request