I am trying to send a Javamail using MailJet SMTP and port. Can this be done without using the GMAIL settings? Here's the code:
props.put("mail.smtp.host", "in-v3.mailjet.com");
props.put("mail.smtp.socketFactory.port", "587");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "587");