@using NzbDrone.Web.Helpers
@model NzbDrone.Web.Models.NotificationSettingsModel
@{
Layout = null;
}
@Html.CheckBoxFor(m => m.SmtpEnabled, new { @class = "inputClass checkClass" })
@Html.CheckBoxFor(m => m.SmtpNotifyOnGrab, new { @class = "inputClass checkClass" })
@Html.CheckBoxFor(m => m.SmtpNotifyOnDownload, new { @class = "inputClass checkClass" })
@Html.TextBoxFor(m => m.SmtpServer, new { @class = "inputClass" })
@Html.TextBoxFor(m => m.SmtpPort, new { @class = "inputClass" })
@Html.CheckBoxFor(m => m.SmtpUseSsl, new { @class = "inputClass checkClass" })
@Html.TextBoxFor(m => m.SmtpUsername, new { @class = "inputClass" })
@Html.TextBoxFor(m => m.SmtpPassword, new { @class = "inputClass", type = "password" })
@Html.TextBoxFor(m => m.SmtpFromAddress, new { @class = "inputClass" })
@Html.TextBoxFor(m => m.SmtpToAddresses, new { @class = "inputClass" })