一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

一段带smtp认证的JavaMail代码。

时间:2008-01-12 编辑:简简单单 来源:一聚教程网

        Properties props = System.getProperties();
        props.put("mail.smtp.host", host);
        String mailNeedAuth = CatseyeConfig.getConfig("MailNeedAuth");
        String mailUser = CatseyeConfig.getConfig("MailUser");
        String mailPassword = CatseyeConfig.getConfig("MailPassword");
        if (mailNeedAuth.equals("1")) {
            props.put("mail.smtp.auth", "true");
        } else {
            props.put("mail.smtp.auth", "false");
        }
        Session session = Session.getDefaultInstance(props, null);
        javax.mail.Message msg = new MimeMessage(session);
        InternetAddress[] toAddrs = null;
        try {
            if (recipients != null) {
                toAddrs = InternetAddress.parse(recipients, false);
                msg.setRecipients(javax.mail.Message.RecipientType.TO, toAddrs);
            } else {
                throw new Exception("No recipient address specified");

热门栏目