1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2024-12-26 01:38:24 +00:00

Fixed: Email connection test reporting success incorrectly

Fixes #1524
This commit is contained in:
Mark McDowall 2016-10-28 11:02:36 -07:00
parent 25a3f83ebc
commit 2ece05cd1e

View file

@ -45,25 +45,17 @@ public void SendEmail(EmailSettings settings, string subject, string body, bool
{ {
_logger.Error("Error sending email. Subject: {0}", email.Subject); _logger.Error("Error sending email. Subject: {0}", email.Subject);
_logger.Debug(ex, ex.Message); _logger.Debug(ex, ex.Message);
throw;
} }
} }
private void Send(MailMessage email, string server, int port, bool ssl, NetworkCredential credentials) private void Send(MailMessage email, string server, int port, bool ssl, NetworkCredential credentials)
{ {
try var smtp = new SmtpClient(server, port);
{ smtp.EnableSsl = ssl;
var smtp = new SmtpClient(server, port); smtp.Credentials = credentials;
smtp.EnableSsl = ssl;
smtp.Credentials = credentials;
smtp.Send(email); smtp.Send(email);
}
catch (Exception ex)
{
_logger.Error(ex, "There was an error sending an email.");
throw;
}
} }
public ValidationFailure Test(EmailSettings settings) public ValidationFailure Test(EmailSettings settings)