PackageDescription: Ipipi-Interface


Ipipi - Interface

Last published: November 24, 2009 by 'emicklei'

Defines 5 Classes
Extends 5 Classes


Ipipi provides two-way SMS messaging service.
This package implements a client using the POST API.
Future version will include the server part to receive messages.

MIT License (c)2009. Ernest Micklei, PhilemonWorks.com

http://docs.upsidewireless.com/index.php?title=Main_Page

POST API
http://api.upsidewireless.com/soap/SMS.asmx?op=Send_Plain

Example:

sms := Ipipi.SMSClient new.
sms authenticate: 'user' password: 'pwd'.
msg := Ipipi.Message new.
msg from: '12343214'.
msg to: '43214321'.
msg contents: 'Smalltalk says: Ipipi'.
sms send: msg.