compose.jsp
上传用户:dinglihq
上传日期:2013-02-04
资源大小:99958k
文件大小:3k
源码类别:

Java编程

开发平台:

Java

  1. <%--
  2.  % @(#)compose.jsp 1.1 01/05/14
  3.  %
  4.  % Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
  5.  %
  6.  % Sun grants you ("Licensee") a non-exclusive, royalty free, license to use,
  7.  % modify and redistribute this software in source and binary code form,
  8.  % provided that i) this copyright notice and license appear on all copies of
  9.  % the software; and ii) Licensee does not utilize the software in a manner
  10.  % which is disparaging to Sun.
  11.  %
  12.  % This software is provided "AS IS," without a warranty of any kind. ALL
  13.  % EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES, INCLUDING ANY
  14.  % IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR
  15.  % NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND ITS LICENSORS SHALL NOT BE
  16.  % LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING
  17.  % OR DISTRIBUTING THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL SUN OR ITS
  18.  % LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT,
  19.  % INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER
  20.  % CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF
  21.  % OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
  22.  % POSSIBILITY OF SUCH DAMAGES.
  23.  %
  24.  % This software is not designed or intended for use in on-line control of
  25.  % aircraft, air traffic, aircraft navigation or aircraft communications; or in
  26.  % the design, construction, operation or maintenance of any nuclear
  27.  % facility. Licensee represents and warrants that it will not use or
  28.  % redistribute the Software for such purposes.
  29.  %
  30. --%>
  31. <%@ page language="java" %>
  32. <%@ page errorPage="errorpage.jsp" %>
  33. <html>
  34. <head>
  35. <title>JavaMail compose</title>
  36. </head>
  37. <body bgcolor="#ccccff">
  38. <form ACTION="send" METHOD=POST>
  39. <input type="hidden" name="send" value="send">
  40. <p align="center">
  41. <b><font size="4" face="Verdana, Arial, Helvetica">
  42. JavaMail Compose Message</font></b>
  43. <p>
  44. <table border="0" width="100%">
  45. <tr>
  46. <td width="16%" height="22">
  47. <p align="right">
  48. <b><font face="Verdana, Arial, Helvetica">To:</font></b></td>
  49. <td width="84%" height="22">
  50. <% if (request.getParameter("to") != null) { %>
  51. <input type="text" name="to" value="<%= request.getParameter("to") %>" size="30">
  52. <% } else { %>
  53. <input type="text" name="to" size="30"> 
  54. <% } %>
  55. <font size="1" face="Verdana, Arial, Helvetica">
  56.  (separate addresses with commas)</font></td></tr>
  57. <tr>
  58. <td width="16%"><p align="right">
  59. <b><font face="Verdana, Arial, Helvetica">From:</font></b></td>
  60. <td width="84%">
  61. <input type="text" name="from" size="30"> 
  62. <font size="1" face="Verdana, Arial, Helvetica">
  63.  (separate addresses with commas)</font></td></tr>
  64. <tr>
  65. <td width="16%"><p align="right">
  66. <b><font face="Verdana, Arial, Helvetica">Subject:</font></b></td>
  67. <td width="84%">
  68. <input type="text" name="subject" size="55"></td></tr>
  69. <tr>
  70. <td width="16%">&nbsp;</td>
  71. <td width="84%"><textarea name="text" rows="15" cols="53"></textarea></td></tr>
  72. <tr>
  73. <td width="16%" height="32">&nbsp;</td>
  74. <td width="84%" height="32">
  75. <input type="submit" name="Send" value="Send">
  76. <input type="reset" name="Reset" value="Reset"></td></tr>
  77. </table>
  78. </form>
  79. </body>
  80. </html>