SMS


Release

Release SMS Notification object on server

Call Method
    Release () throw Exception
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();
  }