1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

SendEmail will catch any errors thrown in Send, so Notifications don't blow up. It will also log additional details.

This commit is contained in:
Mark McDowall 2012-04-30 09:42:07 -07:00
parent b626dc2435
commit e8122685b2

View File

@ -54,7 +54,14 @@ public virtual void SendEmail(string subject, string body, bool htmlBody = false
credentials = new NetworkCredential(username, password);
//Send the email
Send(email, _configProvider.SmtpServer, _configProvider.SmtpPort, _configProvider.SmtpUseSsl, credentials);
try
{
Send(email, _configProvider.SmtpServer, _configProvider.SmtpPort, _configProvider.SmtpUseSsl, credentials);
}
catch(Exception ex)
{
Logger.Error("Error sending email. Subject: {0}", email.Subject);
}
}
public virtual bool SendTestEmail(string server, int port, bool ssl, string username, string password, string fromAddress, string toAddresses)