1

Code:

public static void sendMailAttachments(String mensaje, String cartera, String asunto, String file) throws AddressException, MessagingException, IOException{

    //Get user, pass, to
    getDatosCorreo();

    Properties props = new Properties();
    props.put("mail.smtp.port", "465");
    props.put("mail.smtp.auth", "true");
    props.put("mail.smtp.ssl.trust", "smtp.gmail.com");
    props.put("mail.smtp.starttls.enable", "true");

    Session session = Session.getDefaultInstance(props,
            new javax.mail.Authenticator() {
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(user,pass);
                }
            });
    try {

        Message message = new MimeMessage(session);
        message.setFrom(new InternetAddress(user));

        message.addRecipients(Message.RecipientType.TO, InternetAddress.parse(to.get(0)));

        message.setSubject("Email Subject - Asunto del correo electronico");

        BodyPart messageBodyPart = new MimeBodyPart();
        messageBodyPart.setText("Email text Body - Texto o cuerpo del correo electronico");

        Multipart multipart = new MimeMultipart();
        multipart = addAttachment(multipart, file);

        //Setting email text message
        multipart.addBodyPart(messageBodyPart);

        //set the attachments to the email
        message.setContent(multipart);

        Transport.send(message);

        System.out.println("Correo enviado");

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

}

Exception:

GRAVE: The RuntimeException could not be mapped to a response, re-throwing to the HTTP container java.lang.RuntimeException: javax.mail.MessagingException: Could not connect to SMTP host: localhost, port: 465, response: -1 at util.MAIL.sendMailAttachments(MAIL.java:128)

How to connect and send file?

This code connect to Gmail and send message.

I would need a file to be added to be sent.

getDatosCorreo();

// TODO Auto-generated method stub
// Step1
System.out.println("\n 1st ===> setup Mail Server Properties..");
mailServerProperties = System.getProperties();
mailServerProperties.put("mail.smtp.port", "587");
mailServerProperties.put("mail.smtp.auth", "true");
mailServerProperties.put("mail.smtp.ssl.trust", "smtp.gmail.com");
mailServerProperties.put("mail.smtp.starttls.enable", "true");
System.out.println("Mail Server Properties have been setup successfully..");

// Step2
System.out.println("\n\n 2nd ===> get Mail Session..");
getMailSession = Session.getDefaultInstance(mailServerProperties, null);
generateMailMessage = new MimeMessage(getMailSession);
for(int i = 0; i < to.size(); i++) {
    if(i == 0) {
        generateMailMessage.addRecipient(Message.RecipientType.TO, new InternetAddress(to.get(i)));
    }else {
        generateMailMessage.addRecipient(Message.RecipientType.CC, new InternetAddress(to.get(i)));
    }
}
generateMailMessage.setSubject(asunto+cartera);
generateMailMessage.setContent(mensaje, "text/html");
System.out.println("Mail Session has been created successfully..");

// Step3
System.out.println("\n\n 3rd ===> Get Session and Send mail");
Transport transport = getMailSession.getTransport("smtp");

// Enter your correct gmail UserID and Password
// if you have 2FA enabled then provide App Specific Password
transport.connect("smtp.gmail.com", user, pass);
transport.sendMessage(generateMailMessage, generateMailMessage.getAllRecipients());
transport.close();
System.out.println("\n\n 4rd ===> Send email correctly");
Moses91
  • 25
  • 6
  • 2
    Maybe you should also set the correct value of the `"mail.smtp.host"` property, it looks like it is `localhost` by default . – Arnaud Mar 06 '18 at 10:51

1 Answers1

0

The following settings work for me when using an email service with SSL:

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.starttls.enable", "true");
props.put("mail.smtp.port", "465");

I don't know if you need to set the mail.smtp.ssl.trust property. This SO answer did not require it, nor did I to get it working with my particular SSL email service.

Tim Biegeleisen
  • 502,043
  • 27
  • 286
  • 360