mirror of https://github.com/lidarr/Lidarr
SmtpProvider will throw on exceptions, instead of returning false.
This commit is contained in:
parent
2a8fab7ef9
commit
b626dc2435
|
@ -21,7 +21,7 @@ namespace NzbDrone.Core.Providers
|
||||||
_configProvider = configProvider;
|
_configProvider = configProvider;
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual bool SendEmail(string subject, string body, bool htmlBody = false)
|
public virtual void SendEmail(string subject, string body, bool htmlBody = false)
|
||||||
{
|
{
|
||||||
//Create the Email message
|
//Create the Email message
|
||||||
var email = new MailMessage();
|
var email = new MailMessage();
|
||||||
|
@ -54,7 +54,7 @@ namespace NzbDrone.Core.Providers
|
||||||
credentials = new NetworkCredential(username, password);
|
credentials = new NetworkCredential(username, password);
|
||||||
|
|
||||||
//Send the email
|
//Send the email
|
||||||
return Send(email, _configProvider.SmtpServer, _configProvider.SmtpPort, _configProvider.SmtpUseSsl, credentials);
|
Send(email, _configProvider.SmtpServer, _configProvider.SmtpPort, _configProvider.SmtpUseSsl, credentials);
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual bool SendTestEmail(string server, int port, bool ssl, string username, string password, string fromAddress, string toAddresses)
|
public virtual bool SendTestEmail(string server, int port, bool ssl, string username, string password, string fromAddress, string toAddresses)
|
||||||
|
@ -90,11 +90,19 @@ namespace NzbDrone.Core.Providers
|
||||||
credentials = new NetworkCredential(username, password);
|
credentials = new NetworkCredential(username, password);
|
||||||
|
|
||||||
//Send the email
|
//Send the email
|
||||||
return Send(email, server, port, ssl, credentials);
|
try
|
||||||
|
{
|
||||||
|
Send(email, server, port, ssl, credentials);
|
||||||
|
}
|
||||||
|
catch(Exception ex)
|
||||||
|
{
|
||||||
|
Logger.TraceException("Failed to send test email", ex);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//TODO: make this throw instead of return false.
|
public virtual void Send(MailMessage email, string server, int port, bool ssl, NetworkCredential credentials)
|
||||||
public virtual bool Send(MailMessage email, string server, int port, bool ssl, NetworkCredential credentials)
|
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
@ -109,15 +117,12 @@ namespace NzbDrone.Core.Providers
|
||||||
|
|
||||||
//Send the email
|
//Send the email
|
||||||
smtp.Send(email);
|
smtp.Send(email);
|
||||||
|
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
catch (Exception ex)
|
catch (Exception ex)
|
||||||
{
|
{
|
||||||
Logger.Error("There was an error sending an email.");
|
Logger.ErrorException("There was an error sending an email.", ex);
|
||||||
Logger.TraceException(ex.Message, ex);
|
throw;
|
||||||
return false;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue