javamail 郵件群發(fā)

          package gmailsender;

          import java.security.Security;
          import java.util.Date;
          import java.util.Properties;

          import javax.mail.Authenticator;
          import javax.mail.Message;
          import javax.mail.MessagingException;
          import javax.mail.PasswordAuthentication;
          import javax.mail.Session;
          import javax.mail.Transport;
          import javax.mail.internet.AddressException;
          import javax.mail.internet.InternetAddress;
          import javax.mail.internet.MimeMessage;

          /**
           * 使用Gmail發(fā)送郵件
           * @author Winter Lau
           */
          public class Main {

           public static void main(String[] args) throws AddressException, MessagingException {
            Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
            final String SSL_FACTORY = "javax.net.ssl.SSLSocketFactory";
            // Get a Properties object
            Properties props = System.getProperties();
            props.setProperty("mail.smtp.host", "smtp.gmail.com");
            props.setProperty("mail.smtp.socketFactory.class", SSL_FACTORY);
            props.setProperty("mail.smtp.socketFactory.fallback", "false");
            props.setProperty("mail.smtp.port", "465");
            props.put("mail.smtp.auth", "true");
            final String username = "username";
            final String password = "password";
            Session session = Session.getDefaultInstance(props, new Authenticator(){
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(username, password);
                }});

          // -- Create a new message --
            Message msg = new MimeMessage(session);
           // -- Set the FROM and TO fields --
            String[] gods={"dfgd@yahoo.com.cn","dfgdf@qq.com"};
            int len=gods.length;
            InternetAddress[] address = new InternetAddress[len];
               for (int i = 0; i < gods.length; i++) {
                address[i] = new InternetAddress(gods[i]);
               }
            msg.setFrom(new InternetAddress("fgdfgf@gmail.com"));
            //msg.setRecipients(Message.RecipientType.TO,InternetAddress.parse("dgddfg@qq.com",false));
            msg.setRecipients(Message.RecipientType.TO,address);
            msg.setSubject("woaizhongguo");
            msg.setText("woaizhongguo");
            msg.setSentDate(new Date());
            Transport.send(msg);
            System.out.println("郵件已發(fā)送!");
           

          }
          }


           

          posted on 2007-06-22 19:09 付軒 閱讀(685) 評論(0)  編輯  收藏


          只有注冊用戶登錄后才能發(fā)表評論。


          網(wǎng)站導(dǎo)航:
           
          <2007年6月>
          272829303112
          3456789
          10111213141516
          17181920212223
          24252627282930
          1234567

          導(dǎo)航

          統(tǒng)計

          常用鏈接

          留言簿(2)

          隨筆檔案

          相冊

          搜索

          最新評論

          閱讀排行榜

          評論排行榜

          主站蜘蛛池模板: 广河县| 界首市| 宜昌市| 金塔县| 扎赉特旗| 大城县| 中牟县| 修文县| 博客| 静海县| 武鸣县| 黎川县| 平南县| 宁明县| 桑日县| 花垣县| 开平市| 灯塔市| 河间市| 龙陵县| 安乡县| 邵武市| 盘锦市| 格尔木市| 石林| 嘉鱼县| 收藏| 灵武市| 锡林郭勒盟| 阿勒泰市| 孟州市| 比如县| 当涂县| 礼泉县| 天祝| 德化县| 桐柏县| 韶山市| 广宁县| 新化县| 惠水县|