%@page session="true" import="com.edeal.frontline.*"%><%@ page import="com.edeal.frontline.navigation.FlRequest" %><%@taglib uri="http://www.e-deal.com/taglib/fl" prefix="fl" %>
<%
final org.apache.commons.logging.Log logger = org.apache.commons.logging.LogFactory.getLog(getClass());
FlRequest flRequest = new FlRequest(request);
DataDictionary dico = flRequest.getContext().getDataDictionary();
String SfwID = flRequest.getRequestParameterOrAttribute("SfwID");
String id;
try {
id = EMailing.getID();
} catch (FieldNotInitializedException e) {
id = null;
}
String textMsg = null;
String htmlMsg = null;
String senderID = null;
try { textMsg = EMailing.getEmaTextMsgID(); } catch (FieldNotInitializedException ex) {}
try { htmlMsg = EMailing.getEmaHtmlMsgID(); } catch (FieldNotInitializedException ex) {}
try { senderID = EMailing.getEmaSenderID(); } catch (FieldNotInitializedException ex) {}
ActorBean sender = null;
String senderMail = null;
if(senderID != null) {
try { sender = new ActorBean(senderID, session); } catch (AccessDeniedException ew) {}
try { senderMail = sender.getActMail(); } catch (FieldNotInitializedException ex) {}
} else {
try { senderMail = EMailing.getEmaSender(); } catch (FieldNotInitializedException ex) {}
}
%>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|