Resource item = model.createResource(itemURIString);
String recipientURIStrings[] = body.getParameterValues("recipient");
if (recipientURIStrings == null) {
throw new HandlerException("A recipient must be specified");
}
AcceptLanguagesIterator acceptedLanguages = ehRequest.getAcceptLanguages();
InternetAddress fromAddress;
String fromString = body.getParameter("from");
if ((fromString != null) && (!fromString.equals(""))) {
try {
fromAddress = getIntenetAddress(model.createResource(fromString));