Compare commits

...

1 Commits

Author SHA1 Message Date
Andrei Isvoran
3d9fca1419 RED-7239 Add logs and remove id from SMTPConfiguration 2023-08-28 15:31:39 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -80,7 +80,8 @@ public class SMTPConfigurationController implements SMTPConfigurationResource, P
public void testSMTPConfiguration(@RequestBody SMTPConfiguration smtpConfigurationModel) {
var propertiesMap = convertSMTPConfigurationModelToMap(smtpConfigurationModel);
realmService.realm(TenantContext.getTenantId()).testSMTPConnection(propertiesMap);
var response = realmService.realm(TenantContext.getTenantId()).testSMTPConnection(propertiesMap);
log.info("Test SMTP email status {}", response.getStatus());
}

View File

@ -11,7 +11,6 @@ import lombok.NoArgsConstructor;
@NoArgsConstructor
public class SMTPConfiguration {
private String id;
private String from;
private String fromDisplayName;
private String envelopeFrom;