mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-20 05:23:31 -07: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:
parent
b626dc2435
commit
e8122685b2
1 changed files with 8 additions and 1 deletions
|
@ -54,8 +54,15 @@ namespace NzbDrone.Core.Providers
|
|||
credentials = new NetworkCredential(username, password);
|
||||
|
||||
//Send the email
|
||||
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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue