confirmMsg += getResources(req).getMessage(locale, "smssvc.ConfirmSending.");
smsSendForm.setSendConfirmationPending(true);
req.setAttribute("generalError", confirmMsg);
return mapping.findForward("confirm");
} else {
SmsDestinationAddress receiver = new SmsDestinationAddress(msisdn);
SortedSet<SmsDestinationAddress> receivers = new TreeSet<SmsDestinationAddress>();
receivers.add(receiver);
MessagingManager msgMgr = new MessagingManager(locale, session);
msgMgr.sendSms(fromAddress, receivers, getCurrentGroup(req), smsSendForm.getMessage(), sendAt);
Date date = new Date();