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

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)SendTag.java 1.3 02/04/04
  3.  *
  4.  * Copyright 2001-2002 Sun Microsystems, Inc. All Rights Reserved.
  5.  *
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * - Redistributions of source code must retain the above copyright
  11.  *   notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * - Redistribution in binary form must reproduce the above copyright
  14.  *   notice, this list of conditions and the following disclaimer in the
  15.  *   documentation and/or other materials provided with the distribution.
  16.  * 
  17.  * Neither the name of Sun Microsystems, Inc. or the names of contributors
  18.  * may be used to endorse or promote products derived from this software
  19.  * without specific prior written permission.
  20.  * 
  21.  * This software is provided "AS IS," without a warranty of any kind. ALL
  22.  * EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND WARRANTIES,
  23.  * INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY, FITNESS FOR A
  24.  * PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY EXCLUDED. SUN AND
  25.  * ITS LICENSORS SHALL NOT BE LIABLE FOR ANY DAMAGES OR LIABILITIES
  26.  * SUFFERED BY LICENSEE AS A RESULT OF  OR RELATING TO USE, MODIFICATION
  27.  * OR DISTRIBUTION OF THE SOFTWARE OR ITS DERIVATIVES. IN NO EVENT WILL
  28.  * SUN OR ITS LICENSORS BE LIABLE FOR ANY LOST REVENUE, PROFIT OR DATA, OR
  29.  * FOR DIRECT, INDIRECT, SPECIAL, CONSEQUENTIAL, INCIDENTAL OR PUNITIVE
  30.  * DAMAGES, HOWEVER CAUSED AND REGARDLESS OF THE THEORY OF LIABILITY,
  31.  * ARISING OUT OF THE USE OF OR INABILITY TO USE SOFTWARE, EVEN IF SUN HAS
  32.  * BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
  33.  * 
  34.  * You acknowledge that Software is not designed, licensed or intended
  35.  * for use in the design, construction, operation or maintenance of any
  36.  * nuclear facility.
  37.  *
  38.  */
  39. package demo;
  40. import java.util.*;
  41. import java.net.*;
  42. import javax.mail.*;
  43. import javax.mail.internet.*;
  44. import javax.servlet.jsp.*;
  45. import javax.servlet.jsp.tagext.*;
  46. /**
  47.  * Custom tag for sending messages.
  48.  */
  49. public class SendTag extends BodyTagSupport {
  50.     private String body;
  51.     private String cc;
  52.     private String host;
  53.     private String recipients;
  54.     private String sender;
  55.     private String subject;
  56.     /**
  57.      * host attribute setter method.
  58.      */
  59.     public void setHost(String host) {
  60.         this.host = host;
  61.     }
  62.     
  63.     /**
  64.      * recipient attribute setter method.
  65.      */
  66.     public void setRecipients(String recipients) {
  67.         this.recipients = recipients;
  68.     }
  69.     /**
  70.      * sender attribute setter method.
  71.      */
  72.     public void setSender(String sender) {
  73.         this.sender = sender;
  74.     }
  75.     /**
  76.      * cc attribute setter method.
  77.      */
  78.     public void setCc(String cc) {
  79.         this.cc = cc;
  80.     }
  81.     /**
  82.      * subject attribute setter method.
  83.      */
  84.     public void setSubject(String subject) {
  85.         this.subject = subject;
  86.     }
  87.     /**
  88.      * Method for processing the end of the tag.
  89.      */
  90.     public int doEndTag() throws JspException {
  91.         Properties props = System.getProperties();
  92.         
  93.         try {
  94.             if (host != null)
  95.                 props.put("mail.smtp.host", host);
  96.             else if (props.getProperty("mail.smtp.host") == null)
  97.                 props.put("mail.smtp.host", InetAddress.getLocalHost().
  98.                     getHostName());
  99.         } catch (Exception ex) {
  100.             throw new JspException(ex.getMessage());
  101.         }
  102.         Session session = Session.getDefaultInstance(props, null);
  103. Message msg = new MimeMessage(session);
  104. InternetAddress[] toAddrs = null, ccAddrs = null;
  105.         try {
  106.     if (recipients != null) {
  107.         toAddrs = InternetAddress.parse(recipients, false);
  108.         msg.setRecipients(Message.RecipientType.TO, toAddrs);
  109.     } else
  110.         throw new JspException("No recipient address specified");
  111.             if (sender != null)
  112.                 msg.setFrom(new InternetAddress(sender));
  113.             else
  114.                 throw new JspException("No sender address specified");
  115.     if (cc != null) {
  116.                 ccAddrs = InternetAddress.parse(cc, false);
  117.         msg.setRecipients(Message.RecipientType.CC, ccAddrs);
  118.     }
  119.     if (subject != null)
  120.         msg.setSubject(subject);
  121.     if ((body = getBodyContent().getString()) != null)
  122.         msg.setText(body);
  123.             else
  124.                 msg.setText("");
  125.             Transport.send(msg);
  126.         } catch (Exception ex) {
  127.             throw new JspException(ex.getMessage());
  128.         }
  129.         return(EVAL_PAGE);
  130.    }
  131. }