mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-14 11:23:42 +02:00
73 lines
2.0 KiB
C#
73 lines
2.0 KiB
C#
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using System.Net.Mail;
|
||
|
using System.Text;
|
||
|
using NLog;
|
||
|
using Ninject;
|
||
|
using NzbDrone.Core.Providers.Core;
|
||
|
|
||
|
namespace NzbDrone.Core.Providers
|
||
|
{
|
||
|
public class SmtpProvider
|
||
|
{
|
||
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
||
|
private readonly ConfigProvider _configProvider;
|
||
|
|
||
|
[Inject]
|
||
|
public SmtpProvider(ConfigProvider configProvider)
|
||
|
{
|
||
|
_configProvider = configProvider;
|
||
|
}
|
||
|
|
||
|
public virtual bool SendEmail(string subject, string body, bool htmlBody = false)
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
//Create the Email message
|
||
|
var email = new MailMessage();
|
||
|
|
||
|
//Set the addresses
|
||
|
email.From = new MailAddress(_configProvider.SmtpFromAddress);
|
||
|
|
||
|
//Allow multiple to addresses (split on each comma)
|
||
|
foreach (var toAddress in _configProvider.SmtpToAddresses.Split(','))
|
||
|
{
|
||
|
email.To.Add(toAddress.Trim());
|
||
|
}
|
||
|
|
||
|
//Set the Subject
|
||
|
email.Subject = subject;
|
||
|
|
||
|
//Set the Body
|
||
|
email.Body = body;
|
||
|
|
||
|
//Html Body
|
||
|
email.IsBodyHtml = htmlBody;
|
||
|
|
||
|
//Create the SMTP connection
|
||
|
var smtp = new SmtpClient(_configProvider.SmtpServer, _configProvider.SmtpPort);
|
||
|
|
||
|
//Enable SSL
|
||
|
smtp.EnableSsl = true;
|
||
|
|
||
|
//Credentials
|
||
|
smtp.Credentials = new System.Net.NetworkCredential(_configProvider.SmtpUsername, _configProvider.SmtpPassword);
|
||
|
|
||
|
//Send the email
|
||
|
smtp.Send(email);
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
Logger.Error("There was an error sending an email.");
|
||
|
Logger.TraceException(ex.Message, ex);
|
||
|
}
|
||
|
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
}
|