-
Notifications
You must be signed in to change notification settings - Fork 32
/
Newsletter.jsp
47 lines (47 loc) · 2.48 KB
/
Newsletter.jsp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<%@ include file="../../common/moduleInclude.jsp" %>
<tr>
<td>
<table cellpadding="0" cellspacing="0" class="messageBox" width="60%" align="center">
<c:choose>
<c:when test="${auth}">
<s:form action="SendNewsletter" method="POST" theme="simple">
<tr valign="top" class="titleRow">
<td align="left"> Send Message To:</td>
</tr>
<tr valign="top" class="subtitle">
<td align="left">
<table border=0 cellpadding="0" cellspacing="0"><tr><td style="border:0px" width="50px"><strong>To:</strong><td style="border:0px">All Customers</td></tr></table>
</td>
</tr>
<tr class="subtitle">
<td colspan="2" align="left">
<table cellpadding="0" cellspacing="0"><tr ><td style="border:0px" width="50px"><strong>Subject:</strong></td><td style="border:0px"><s:textfield label="Subject" name="subject" size="50"/></td></tr></table>
</td>
</tr>
<tr valign="top">
<td>
<table cellspacing="0" width="100%" align="center">
<tr class="dataCell">
<td colspan="2" align="left"><s:textarea label="Body" name="body" cols="114" rows="12"/></td>
</tr>
<tr class="dataCell" align="left">
<td colspan="2"> <input type="image" src="<s:url value="/img/btnSend.gif" includeParams="none"/>" alt="Send" align="absmiddle" /></td>
</tr>
</table>
</td>
</tr>
</s:form>
</c:when>
<c:otherwise>
<tr valign="top" align="center" class="titleRow">
<td width="35%" align="left"> Access Denied:</td>
</tr>
<tr>
<td class="dataCell" align="center" width="100%">You are not authorized to view this page.</td>
</tr>
</c:otherwise>
</c:choose>
</table>
<br>
</td>
</tr>