Я пытался отправить почту через jmeter в сэмплере webdriver, но он вывел меня ниже ошибки, но код работает на Eclipse Java правильно.Код-
final String username = "xyz@abc.com"; // like yourname@outlook.com
final String password = "ABC@123"; // password here
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", "smtp-mail.outlook.com");
props.put("mail.smtp.port", "587");
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
// @Override
PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
session.setDebug(true);
try {
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress(username));
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse("PQS@abc.com")); // like inzi769@gmail.com
message.setSubject("Test");
message.setText("HI you have done sending mail with outlook");
Transport.send(message);
WDS.log.info("Done");
}
Обнаружена ошибка "(реквизиты, новый javax. Mail. Authenticator () {PasswordAuthentication getPasswordAuthentication ("