SMS


Send

Send text message to destinaion

Call Method
    Send (String Target, String Text) throw Exception
Parameters
   Target
         Target SMS number
   Text
         Message Text
JAVA Example
  Personalizer pers = null;
  Session sess = null;
  try{
      //Create personalizer object and Session object
      pers = new Personalizer();
      sess = pers.CreateSession("LogonName", "Password");
      //Create SMS Notification
      SMS objSMS = sess.CreateSMSNotification();
      objSMS.Send("+11005118196", "This is SMS Notification Message");
      objSMS.Release();
      sess.Release();
  }
  catch(Exception e){
      //Print exception message e.Message
      System.out.println(e.Message);
      sess.Release();
  }