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

Java编程

开发平台:

Java

  1. /*
  2.  * @(#)msgmultisendsample.java 1.14 03/04/22
  3.  *
  4.  * Copyright 1996-2003 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. import java.util.*;
  39. import java.io.*;
  40. import javax.mail.*;
  41. import javax.mail.internet.*;
  42. import javax.activation.*;
  43. /**
  44.  * msgmultisendsample creates a simple multipart/mixed message and sends it.
  45.  * Both body parts are text/plain.
  46.  * <p>
  47.  * usage: <code>java msgmultisendsample <i>to from smtp true|false</i></code>
  48.  * where <i>to</i> and <i>from</i> are the destination and
  49.  * origin email addresses, respectively, and <i>smtp</i>
  50.  * is the hostname of the machine that has smtp server
  51.  * running.  The last parameter either turns on or turns off
  52.  * debugging during sending.
  53.  *
  54.  * @author Max Spivak
  55.  */
  56. public class msgmultisendsample {
  57.     static String msgText1 = "This is a message body.nHere's line two.";
  58.     static String msgText2 = "This is the text in the message attachment.";
  59.     public static void main(String[] args) {
  60. if (args.length != 4) {
  61.     System.out.println("usage: java msgmultisend <to> <from> <smtp> true|false");
  62.     return;
  63. }
  64. String to = args[0];
  65. String from = args[1];
  66. String host = args[2];
  67. boolean debug = Boolean.valueOf(args[3]).booleanValue();
  68. // create some properties and get the default Session
  69. Properties props = new Properties();
  70. props.put("mail.smtp.host", host);
  71. Session session = Session.getInstance(props, null);
  72. session.setDebug(debug);
  73. try {
  74.     // create a message
  75.     MimeMessage msg = new MimeMessage(session);
  76.     msg.setFrom(new InternetAddress(from));
  77.     InternetAddress[] address = {new InternetAddress(to)};
  78.     msg.setRecipients(Message.RecipientType.TO, address);
  79.     msg.setSubject("JavaMail APIs Multipart Test");
  80.     msg.setSentDate(new Date());
  81.     // create and fill the first message part
  82.     MimeBodyPart mbp1 = new MimeBodyPart();
  83.     mbp1.setText(msgText1);
  84.     // create and fill the second message part
  85.     MimeBodyPart mbp2 = new MimeBodyPart();
  86.     // Use setText(text, charset), to show it off !
  87.     mbp2.setText(msgText2, "us-ascii");
  88.     // create the Multipart and its parts to it
  89.     Multipart mp = new MimeMultipart();
  90.     mp.addBodyPart(mbp1);
  91.     mp.addBodyPart(mbp2);
  92.     // add the Multipart to the message
  93.     msg.setContent(mp);
  94.     
  95.     // send the message
  96.     Transport.send(msg);
  97. } catch (MessagingException mex) {
  98.     mex.printStackTrace();
  99.     Exception ex = null;
  100.     if ((ex = mex.getNextException()) != null) {
  101. ex.printStackTrace();
  102.     }
  103. }
  104.     }
  105. }