使用SSL连接通过Gmail SMTP服务器发送电子邮件通知

时间:2012-01-12 12:55:41

标签: java smtp gmail javamail

我正在尝试使用SSL连接通过Gmail SMTP服务器发送电子邮件通知。但没有电子邮件。即使没有报告错误。我的方法send()在下面给出。请帮助。我正在使用JSF2。

public void send()
{
    Properties props = new Properties();
    props.put("mail.smtp.host", "smtp.gmail.com");
    props.put("mail.smtp.socketFactory.port", "465");
    props.put("mail.smtp.socketFactory.class",
            "javax.net.ssl.SSLSocketFactory");
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.port", "465");

    Session session = Session.getDefaultInstance(props,
            new javax.mail.Authenticator() {
        protected PasswordAuthentication getPasswordAuthentication() {
            return new PasswordAuthentication("userName","password");
        }
    });

    try {

        Message message = new MimeMessage(session);
        message.setFrom(new InternetAddress("nid@gmail.com"));
        message.setRecipients(Message.RecipientType.TO,
                InternetAddress.parse("arun@gmail.com"));
        message.setSubject("Testing Subject");
        message.setText("Dear Mail Crawler," +
                "\n\n No spam to my email, please!");

        Transport.send(message);

        System.out.println("Done");

    } catch (MessagingException e) {
        throw new RuntimeException(e);
    }
}

1 个答案:

答案 0 :(得分:2)

此代码过于复杂。 JavaMail FAQ有sample code for using Gmail。 它还有tips for debugging your problems

一个特殊问题是您应该使用Session.getInstance而不是 作为Session.getDefaultInstance。