minor cleanup.

This commit is contained in:
Keivan Beigi 2013-07-15 17:46:41 -07:00
commit 89b43836d0
3 changed files with 31 additions and 61 deletions

View file

@ -73,7 +73,7 @@ namespace NzbDrone.Core.Notifications.Email
var settings = new EmailSettings();
settings.InjectFrom(message);
var body = "Success! You have properly configured your email notification settings";
const string body = "Success! You have properly configured your email notification settings";
SendEmail(settings, "NzbDrone - Test Notification", body);
}