System.out.println("Is recipient's network covered? : " + gateway.queryCoverage(msg));
// Send the message.
Service.getInstance().sendMessage(msg);
System.out.println(msg);
// Now query the service to find out our credit balance.
System.out.println("Remaining credit: " + gateway.queryBalance());
// Send some messages in async mode...
// After this, your IOutboundMessageNotification method will be called
// for each message sent out.
//msg = new OutboundMessage("+30...", "Max");
//srv.queueMessage(msg, "clickatell.http.1", AbstractGateway.Priority.HIGH);