Skip to content

Commit

Permalink
fixed method signature. no support for office 365 yet. issue #2724
Browse files Browse the repository at this point in the history
  • Loading branch information
j-dimension committed Dec 15, 2024
1 parent f74d75d commit ee860bb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -932,7 +932,7 @@ private void cmdTestMailActionPerformed(java.awt.event.ActionEvent evt) {//GEN-F
if (!("".equals(this.txtSmtpPort.getText()))) {
port = Integer.parseInt(this.txtSmtpPort.getText());
}
sysMan.testSendMail(this.txtSmtp.getText(), port, this.txtUser.getText(), new String(this.txtPassword.getPassword()), this.chkSsl.isSelected(), this.chkEmailStartTls.isSelected(), this.txtRecipient.getText());
sysMan.testSendMail(this.txtSmtp.getText(), port, this.txtUser.getText(), new String(this.txtPassword.getPassword()), this.chkSsl.isSelected(), this.chkEmailStartTls.isSelected(), this.txtRecipient.getText(), false, null);
JOptionPane.showMessageDialog(this, "Testnachricht erfolgreich verschickt - bitte Posteingang prüfen", "Hinweis", JOptionPane.INFORMATION_MESSAGE);
} catch (Exception ex) {
log.error(ex);
Expand Down

0 comments on commit ee860bb

Please sign in to comment.