1234567891011121314151617181920212223242526272829303132 |
- <%@ page contentType="text/html;charset=UTF-8" %>
- <%@ include file="/webpage/include/taglib.jsp"%>
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="decorator" content="ani"/>
- <title>邮件结果</title>
- <script>
- var index = jp.info("成功");
- jp.close(index);
- </script>
- </head>
- <body>
- <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}/common/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>
|