mail_compose_success.jsp 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. <%@ page contentType="text/html;charset=UTF-8" %>
  2. <%@ include file="/webpage/include/taglib.jsp"%>
  3. <!DOCTYPE html>
  4. <html>
  5. <head>
  6. <meta name="decorator" content="ani"/>
  7. <title>邮件结果</title>
  8. <script>
  9. var index = jp.info("成功");
  10. jp.close(index);
  11. </script>
  12. </head>
  13. <body>
  14. <div class="middle-box text-center lockscreen animated fadeInDown">
  15. <div>
  16. <div class="m-b-md">
  17. <img alt="image" style="width:150px;"class="img-circle circle-border" src="${ctxStatic}/common/images/success.jpg">
  18. </div>
  19. <c:if test="${mailCompose.status == '0'}">
  20. <p>邮件已经保存到草稿箱!</p>
  21. </c:if>
  22. <c:if test="${mailCompose.status == '1'}">
  23. <p>邮件发送成功!</p>
  24. </c:if>
  25. <form class="m-t" role="form" action="index.html">
  26. <a href="${ctx}/iim/mailBox/list?orderBy=sendtime desc" class="btn btn-primary block full-width">返回</a>
  27. </form>
  28. </div>
  29. </div>
  30. </body>
  31. </html>