liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
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
<%@ page contentType="text/html;charset=UTF-8" %>
<%@ include file="/webpage/include/taglib.jsp"%>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-31j">
    <meta name="decorator" content="default"/>
 
<title>邮件结果</title>
</head>
<body class="gray-bg">
 
    <div class="lock-word animated fadeInDown">
    </div>
    <div class="middle-box text-center lockscreen animated fadeInDown">
        <div>
            <div class="m-b-md">
                <img alt="image" style="width:150px;"class="img-circle circle-border" src="${ctxStatic}/images/success.jpg">
            </div>
            <c:if test="${mailCompose.status == '0'}">
            <p>邮件已经保存到草稿箱!</p>
            </c:if>
            <c:if test="${mailCompose.status == '1'}">
            <p>邮件发送成功!</p>
            </c:if>
            
            <form class="m-t" role="form" action="index.html">
                <a href="${ctx}/iim/mailBox/list?orderBy=sendtime desc" class="btn btn-primary block full-width">返回</a>
            </form>
        </div>
    </div>
</body>
</html>