mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
8cac7ed1cd
Notification ImplementationType was added for showing in UI (Humanized/Title cased of Implementation)
46 lines
1.1 KiB
C#
46 lines
1.1 KiB
C#
using System;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Notifications.Email
|
|
{
|
|
public class Email : NotificationBase<EmailSettings>
|
|
{
|
|
private readonly IEmailService _smtpProvider;
|
|
|
|
public Email(IEmailService smtpProvider)
|
|
{
|
|
_smtpProvider = smtpProvider;
|
|
}
|
|
|
|
public override string Name
|
|
{
|
|
get { return "Email"; }
|
|
}
|
|
|
|
public override string ImplementationName
|
|
{
|
|
get { return "Email"; }
|
|
}
|
|
|
|
public override void OnGrab(string message)
|
|
{
|
|
const string subject = "NzbDrone [TV] - Grabbed";
|
|
var body = String.Format("{0} sent to SABnzbd queue.", message);
|
|
|
|
_smtpProvider.SendEmail(Settings, subject, body);
|
|
}
|
|
|
|
public override void OnDownload(string message, Series series)
|
|
{
|
|
const string subject = "NzbDrone [TV] - Downloaded";
|
|
var body = String.Format("{0} Downloaded and sorted.", message);
|
|
|
|
_smtpProvider.SendEmail(Settings, subject, body);
|
|
}
|
|
|
|
public override void AfterRename(Series series)
|
|
{
|
|
}
|
|
}
|
|
}
|