mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
parent
7de2c8d41f
commit
b67f6b98ae
@ -65,6 +65,23 @@ public override ValidationResult Test()
|
|||||||
return new ValidationResult(failures);
|
return new ValidationResult(failures);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public ValidationFailure Test(EmailSettings settings)
|
||||||
|
{
|
||||||
|
const string body = "Success! You have properly configured your email notification settings";
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
SendEmail(settings, "Radarr - Test Notification", body);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.Error(ex, "Unable to send test email");
|
||||||
|
return new ValidationFailure("Server", "Unable to send test email");
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
private void SendEmail(EmailSettings settings, string subject, string body, bool htmlBody = false)
|
private void SendEmail(EmailSettings settings, string subject, string body, bool htmlBody = false)
|
||||||
{
|
{
|
||||||
var email = new MimeMessage();
|
var email = new MimeMessage();
|
||||||
@ -101,6 +118,8 @@ private void Send(MimeMessage email, EmailSettings settings)
|
|||||||
{
|
{
|
||||||
using (var client = new SmtpClient())
|
using (var client = new SmtpClient())
|
||||||
{
|
{
|
||||||
|
client.Timeout = 10000;
|
||||||
|
|
||||||
var serverOption = SecureSocketOptions.Auto;
|
var serverOption = SecureSocketOptions.Auto;
|
||||||
|
|
||||||
if (settings.RequireEncryption)
|
if (settings.RequireEncryption)
|
||||||
@ -138,23 +157,6 @@ private void Send(MimeMessage email, EmailSettings settings)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public ValidationFailure Test(EmailSettings settings)
|
|
||||||
{
|
|
||||||
const string body = "Success! You have properly configured your email notification settings";
|
|
||||||
|
|
||||||
try
|
|
||||||
{
|
|
||||||
SendEmail(settings, "Radarr - Test Notification", body);
|
|
||||||
}
|
|
||||||
catch (Exception ex)
|
|
||||||
{
|
|
||||||
_logger.Error(ex, "Unable to send test email");
|
|
||||||
return new ValidationFailure("Server", "Unable to send test email");
|
|
||||||
}
|
|
||||||
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
private MailboxAddress ParseAddress(string type, string address)
|
private MailboxAddress ParseAddress(string type, string address)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
|
Loading…
Reference in New Issue
Block a user